public static Step AddStep(string name, Action body, object stepType) { var step = new SyncStep(EmbellishStepName(name), body, stepType); Steps.Add(step); return(step); }
public static Step AddStep(string name, Action body, object stepType) { var step = new SyncStep(EmbellishStepName(name), body, stepType); Steps.Add(step); return step; }