예제 #1
0
파일: Process.cs 프로젝트: taler0n/Students
        public Process(IEnumerable <IStep> steps, Process nextProcess = null)
        {
            Steps = new StepCollection(steps);

            NextProcess = nextProcess;

            ProcessStatus = Status.NotStarted;
        }
예제 #2
0
파일: Process.cs 프로젝트: taler0n/Students
        public Process()
        {
            Steps = new StepCollection();

            NextProcess = null;

            ProcessStatus = Status.NotStarted;
        }