Beispiel #1
0
 public Stack <decimal> QueryHistory(BankAccount account)
 {
     return(_history.ContainsKey(account) ? _history[account] : null);
 }
Beispiel #2
0
 public bool IsAccountInHistory(BankAccount account)
 {
     return(_history.ContainsKey(account));
 }