示例#1
0
        public static WorkStep CreateWorkStep(this IWriteableWorkStepRepository repository, string path, WorkStepType type)
        {
            var step = WorkStep.New(path).UpdateType(type);

            repository.CreateWorkStep(step);
            return(step);
        }
示例#2
0
        public static WorkStep CreateWorkStep(this IWriteableWorkStepRepository repository, string path, int wipLimit)
        {
            var step = WorkStep.New(path).UpdateWipLimit(wipLimit);

            repository.CreateWorkStep(step);
            return(step);
        }
示例#3
0
        public static WorkStep CreateWorkStep(this IWriteableWorkStepRepository repository, string path)
        {
            var step = WorkStep.New(path);

            repository.CreateWorkStep(step);
            return(step);
        }