Exemplo n.º 1
0
 // This constructor will create new state taking values from old state
 public NoCashState(ATMState state)
     : this(state.DummyCashPresent, state.ATM)
 {
 }
Exemplo n.º 2
0
 // This constructor will create new state taking values from old state
 public NoCashState(ATMState state)
     : this(state.DummyCashPresent, state.ATM)
 {
 }
Exemplo n.º 3
0
 // This constructor will create new state taking values from old state
 public CashWithdrawnState(ATMState state)
     : this(state.DummyCashPresent, state.ATM)
 {
 }
Exemplo n.º 4
0
 // This constructor will create new state taking values from old state
 public CashWithdrawnState(ATMState state)
     : this(state.DummyCashPresent, state.ATM)
 {
 }
Exemplo n.º 5
0
 // This constructor will create new state taking values from old state
 public CardValidatedState(ATMState state)
     : this(state.DummyCashPresent, state.ATM)
 {
 }
Exemplo n.º 6
0
 // This constructor will create new state taking values from old state
 public CardValidatedState(ATMState state)
     : this(state.DummyCashPresent, state.ATM)
 {
 }