Exemple #1
0
 // This constructor will create new state taking values from old state
 public CardValidatedState(ATMState state)    
     :this(state.DummyCashPresent, state.Atm)
 {
     
 }
 // This constructor will create new state taking values from old state
 public CardValidatedState(ATMState state)
     : this(state.DummyCashPresent, state.Atm)
 {
 }
 // This constructor will create new state taking values from old state
 public CashWithdrawnState(ATMState state)
     : this(state.DummyCashPresent, state.Atm)
 {
 }
Exemple #4
0
 // This constructor will create new state taking values from old state
 public NoCashState(ATMState state)      
     :this(state.DummyCashPresent, state.Atm)
 {
     
 }
Exemple #5
0
 // This constructor will create new state taking values from old state
 public CashWithdrawnState(ATMState state)      
     :this(state.DummyCashPresent, state.Atm)
 {
     
 }
Exemple #6
0
 // This constructor will create new state taking values from old state
 public NoCardState(ATMState state)
     : this(state.DummyCashPresent, state.Atm)
 {
 }
Exemple #7
0
 public ATM()
 {
     currentState = new NoCardState(1000, this);
 }
Exemple #8
0
 public ATM()
 {
     currentState = new NoCardState(1000, this);
 }