Ejemplo n.º 1
0
 public virtual bool IsCashOut(int amount, CurrencyType currencyType, Queue <string> bill)
 {
     return(_nextHandler != null && _nextHandler.IsCashOut(amount, currencyType, bill));
 }
Ejemplo n.º 2
0
 protected bool IsCashOut(int amount, CurrencyType currencyType, Queue <string> bill)
 {
     return(_handler.IsCashOut(amount, currencyType, bill));
 }