public Process(IEnumerable <IStep> steps, Process nextProcess = null) { Steps = new StepCollection(steps); NextProcess = nextProcess; ProcessStatus = Status.NotStarted; }
public Process() { Steps = new StepCollection(); NextProcess = null; ProcessStatus = Status.NotStarted; }