public void Replace(Type stepType, ModuleInstallingPipelineStep step) { Steps.ReplaceOne(step => step.GetType() == stepType, step); }
public void InsertBefore(Type stepType, ModuleInstallingPipelineStep step) { Steps.InsertBefore(step => step.GetType() == stepType, step); }
public void Add(ModuleInstallingPipelineStep step) { Steps.Add(step); }