Example #1
0
 public FlowDetailInfo GetFlowDetail(string System, string ID = "", string objkey = "", int objid = 0)
 {
     if (!string.IsNullOrEmpty(ID))
     {
         return(FlowService.GetFlowDetail(System, ID));
     }
     else
     {
         return(FlowService.GetFlowDetail(System, objkey, objid));
     }
 }
Example #2
0
 public Dictionary <string, Dictionary <string, Dictionary <string, string> > > GetFlowUser()
 {
     return(FlowService.GetFlowUser());
 }
Example #3
0
 public FlowNodeInfo GetFlowNodeInfo(string System, int ID, Dictionary <string, object> Params)
 {
     return(FlowService.GetFlowNodeInfo(ID, System, Params));
 }
Example #4
0
 public ProcessInfo GetFlowInfo(string System, string Key = "", int ID = 0)
 {
     return(FlowService.GetFlowInfo(System, Key, ID));
 }
Example #5
0
 public FlowNodeInfo GetInitFlowInfo(string Name, Dictionary <string, object> Params)
 {
     return(FlowService.GetInitFlowNodeInfo(Name, Params));
 }