Exemplo n.º 1
0
 public FlowBuilderTo(UiFlow uiFlow, CreatedInstances createdInstances, IState sourceState, IState targetState)
 {
     this.uiFlow           = uiFlow;
     this.createdInstances = createdInstances;
     this.sourceState      = sourceState;
     this.targetState      = targetState;
 }
Exemplo n.º 2
0
        public StartViaBuilder(UiFlow uiFlow, CreatedInstances createdInstances, IState state)
        {
            if (state == null)
            {
                throw new ArgumentNullException(nameof(state));
            }

            this.uiFlow           = uiFlow;
            this.createdInstances = createdInstances;
            this.state            = state;
        }
Exemplo n.º 3
0
 public FlowBuilder(UiFlow uiFlow, CreatedInstances createdInstances)
 {
     this.uiFlow           = uiFlow;
     this.createdInstances = createdInstances;
 }
Exemplo n.º 4
0
 public FlowBuilderFrom(UiFlow uiFlow, CreatedInstances createdInstances, IState sourceState)
 {
     this.uiFlow           = uiFlow;
     this.createdInstances = createdInstances;
     this.sourceState      = sourceState;
 }