Exemple #1
0
        public static Step AddStep(string name, Func <Task> body, object stepType)
        {
            var step = new AsyncStep(EmbellishStepName(name), body, stepType);

            Steps.Add(step);
            return(step);
        }
 public static Step AddStep(string name, Func<Task> body, object stepType)
 {
     var step = new AsyncStep(EmbellishStepName(name), body, stepType);
     Steps.Add(step);
     return step;
 }