MigSharp.Process.MigrationBatch.OnStepExecuted C# (CSharp) Method

OnStepExecuted() private method

private OnStepExecuted ( MigrationEventArgs e ) : void
e MigrationEventArgs
return void
        private void OnStepExecuted(MigrationEventArgs e)
        {
            EventHandler<MigrationEventArgs> tmp = StepExecuted;
            if (tmp != null) tmp(this, e);
        }