Exemple #1
0
        //private IDictionary<string, FlowElement> flowElementById;

        public Process()
        {
            this.flowElements = new FlowElementCollection(this);
            this.processType  = ProcessType.None;
            this.isClosed     = false;
            this.isExecutable = false;
        }
Exemple #2
0
 public SubProcess()
 {
     this.flowElements = new FlowElementCollection(this);
 }