コード例 #1
0
        public static Step AddStep(string name, Action body, object stepType)
        {
            var step = new SyncStep(EmbellishStepName(name), body, stepType);

            Steps.Add(step);
            return(step);
        }
コード例 #2
0
 public static Step AddStep(string name, Action body, object stepType)
 {
     var step = new SyncStep(EmbellishStepName(name), body, stepType);
     Steps.Add(step);
     return step;
 }