Esempio n. 1
0
 public Selector <T> SetStepSelector(ISingleStepSelector <T> stepSelector)
 {
     _stepSelector = stepSelector;
     return(this);
 }
Esempio n. 2
0
 public SelectorTests()
 {
     _processor    = new TestProcessor();
     _stepSelector = new TestStepSelector();
 }
Esempio n. 3
0
 public Selector(string name = null, string id = null, StepSettings stepSettings = null, ISingleStepSelector <T> stepSelector = null) : base(name, id, stepSettings)
 {
     _options      = new List <Step <T> >();
     _stepSelector = stepSelector;
 }