Exemplo n.º 1
0
 public void Replace(Type stepType, ModuleInstallingPipelineStep step)
 {
     Steps.ReplaceOne(step => step.GetType() == stepType, step);
 }
Exemplo n.º 2
0
 public void InsertBefore(Type stepType, ModuleInstallingPipelineStep step)
 {
     Steps.InsertBefore(step => step.GetType() == stepType, step);
 }
Exemplo n.º 3
0
 public void Add(ModuleInstallingPipelineStep step)
 {
     Steps.Add(step);
 }