protected void OnComplete(IStepCompleteCommand command)
 {
     var args = new StepCompleteEventArgs(command);
     if (!Complete.IsNull())
         Complete(this, args);
 }
 public StepCompleteEventArgs(IStepCompleteCommand command)
 {
     _command = command;
 }