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