public void ReportStepProgress(IStepExecutionContext context, int progress)
 {
     StepStatusChanged?.Invoke(this,
                               new StepStatusEventArgs(context, StepStatus.PROGRESS)
     {
         Progress = progress
     });
 }
 public void OnStepStatusChanged(StepStatusEventArgs e)
 {
     StepStatusChanged?.Invoke(this, e);
 }