示例#1
0
 public TargetStateWrapper(TargetFlowWrapper tflow, IEnumerable<TargetState> tstates)
 {
     this.tflow = tflow;
     this.tstates = new List<TargetState>();
     this.tstates.AddRange(tstates);
 }
示例#2
0
 public TargetStateWrapper(TargetFlowWrapper tflow, TargetState tstate)
     : this(tflow, new TargetState[] { tstate })
 {
 }
示例#3
0
 public TargetStateWrapper(TargetFlowWrapper tflow, IEnumerable <TargetState> tstates)
 {
     this.tflow   = tflow;
     this.tstates = new List <TargetState>();
     this.tstates.AddRange(tstates);
 }
示例#4
0
 public static bool HasNextBizFlow(this TargetFlowWrapper tfw)
 {
     return(tfw != null && tfw.FlowInfo != null && tfw.FlowInfo.BizFlow != null && tfw.FlowInfo.BizFlow.BizFlow.NextBizFlows != null && tfw.FlowInfo.BizFlow.BizFlow.NextBizFlows.Count > 0);
 }
示例#5
0
 public TargetStateWrapper(TargetFlowWrapper tflow, TargetState tstate)
     : this(tflow, new TargetState[] { tstate })
 {
 }