public ATM() { currentState = new NoCardState(1000, this); }
public NoCashState(ATMState state) : this(state.DummyCashPresent, state.Atm) { }
public CardValidateState(ATMState state) : this(state.DummyCashPresent, state.Atm) { }