public void InputPsw(string psw)
 {
     this._cardState = _cardState.InputPsw(psw);
 }
 public void Withdraw()
 {
     this._cardState = _cardState.Withdraw();
 }
 public void CardIn(string cardNumber)
 {
     this._cardState = _cardState.CardIn(cardNumber);
 }
 public void CardOut()
 {
     this._cardState = _cardState.CardOut();
 }
 public ATM()
 {
     _cardState = new StateCardOut(this);
 }
Ejemplo n.º 6
0
 public void CardOut()
 {
     this._cardState = _cardState.CardOut();
 }
Ejemplo n.º 7
0
 public void Withdraw()
 {
     this._cardState = _cardState.Withdraw();
 }
Ejemplo n.º 8
0
 public void InputPsw(string psw)
 {
     this._cardState = _cardState.InputPsw(psw);
 }
Ejemplo n.º 9
0
 public void CardIn(string cardNumber)
 {
     this._cardState = _cardState.CardIn(cardNumber);
 }