public static WorkStep CreateWorkStep(this IWriteableWorkStepRepository repository, string path, WorkStepType type) { var step = WorkStep.New(path).UpdateType(type); repository.CreateWorkStep(step); return(step); }
public static WorkStep CreateWorkStep(this IWriteableWorkStepRepository repository, string path, int wipLimit) { var step = WorkStep.New(path).UpdateWipLimit(wipLimit); repository.CreateWorkStep(step); return(step); }
public static WorkStep CreateWorkStep(this IWriteableWorkStepRepository repository, string path) { var step = WorkStep.New(path); repository.CreateWorkStep(step); return(step); }