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