public IPipelineStep <T> Register(IPipelineStep <T> step)
 {
     if (_rootStep == null)
     {
         _rootStep = step;
     }
     else
     {
         _rootStep.Register(step);
     }
     return(_rootStep);
 }
예제 #2
0
 public IPipelineStep <T> Register(IPipelineStep <T> step)
 {
     if (_nextStep == null)
     {
         _nextStep = step;
     }
     else
     {
         _nextStep.Register(step);
     }
     return(this);
 }