Пример #1
0
 public FlowBuilderTo(Flow flow, CreatedInstances createdInstances, IState sourceState, IState targetState)
 {
     this.flow             = flow;
     this.createdInstances = createdInstances;
     this.sourceState      = sourceState;
     this.targetState      = targetState;
 }
Пример #2
0
        public StartViaBuilder(Flow flow, CreatedInstances createdInstances, IState state)
        {
            if (state == null)
            {
                throw new ArgumentNullException(nameof(state));
            }

            this.flow             = flow;
            this.createdInstances = createdInstances;
            this.state            = state;
        }
Пример #3
0
 public FlowBuilderFrom(Flow flow, CreatedInstances createdInstances, IState sourceState)
 {
     this.flow             = flow;
     this.createdInstances = createdInstances;
     this.sourceState      = sourceState;
 }
 public FlowBuilderStart(Flow flow, CreatedInstances createdInstances)
 {
     this.flow             = flow;
     this.createdInstances = createdInstances;
 }