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