예제 #1
0
파일: ATM.cs 프로젝트: jubick1337/COR
 public virtual bool CashOut(int amount, CurrencyType currency)
 {
     return(_nextHandler != null && _nextHandler.CashOut(amount, currency));
 }
예제 #2
0
파일: ATM.cs 프로젝트: jubick1337/COR
 public bool CashOut(int amount, CurrencyType currency)
 {
     return(_handler.CashOut(amount, currency));
 }