コード例 #1
0
ファイル: ProcessManager.cs プロジェクト: chubbyerror/BpmNet
 public ProcessManager(DbContext context)
 {
     procInsStore = new ProcessInstanceStore(context);
     procStore    = new BpmnProcessStore(context);
     itemDefStore = new ProcessItemDefinitionStore(context);
     hisStore     = new ProcessHistoryStore(context);
     taskStore    = new ProcessTaskStore(context);
 }
コード例 #2
0
 public DeploymentManager(BpmDbContext context)
 {
     Context                  = context;
     processStore             = new BpmnProcessStore(context);
     itemDefStore             = new ProcessItemDefinitionStore(context);
     processItemVariableStore = new ProcessItemVariableStore(context);
     sequenceFlowStore        = new BpmnSequenceFlowStore(context);
     flowNodeStore            = new BpmnFlowNodeStore(context);
     bpmnItemDefinitionStore  = new BpmnItemDefinitionStore(context);
 }