예제 #1
0
 public WfExecutionOjbect(WfInstanceElement wfinstance, Prodef prodef)
 {
     if (LoggingService.IsInfoEnabled)
     {
         LoggingService.Info("Init the WfProcess");
     }
     this.wfInstance = wfinstance;
     this.wfInstance.Name = prodef.Name;
     this.InitInstByProdef(prodef);
     this.InitElse();
 }
예제 #2
0
 public WfExecutionOjbect(WfInstanceElement wfinstance, Actdef actdef)
 {
     if (LoggingService.IsInfoEnabled)
     {
         LoggingService.Info("Init the WfActivity");
     }
     this.wfInstance = wfinstance;
     this.wfInstance.Name = actdef.Name;
     Prodef prodef = actdef.Prodef;
     this.InitInstByProdef(prodef);
     this.InitElse();
 }
예제 #3
0
 public WfExecutionOjbect(WfInstanceElement wfinstance)
 {
     this.wfInstance = wfinstance;
 }