public TargetStateWrapper(TargetFlowWrapper tflow, IEnumerable<TargetState> tstates) { this.tflow = tflow; this.tstates = new List<TargetState>(); this.tstates.AddRange(tstates); }
public TargetStateWrapper(TargetFlowWrapper tflow, TargetState tstate) : this(tflow, new TargetState[] { tstate }) { }
public TargetStateWrapper(TargetFlowWrapper tflow, IEnumerable <TargetState> tstates) { this.tflow = tflow; this.tstates = new List <TargetState>(); this.tstates.AddRange(tstates); }
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); }