Exemplo n.º 1
0
 public void Withdraw(string id, int amount)
 {
     CheckId(id);
     AccountStorage.GetByID(id).Withdraw(amount);
 }
Exemplo n.º 2
0
 public void Deposit(string id, int amount)
 {
     CheckId(id);
     AccountStorage.GetByID(id).Deposit(amount);
 }