Exemplo n.º 1
0
 void WithdrawFromAccount(IAccount account, decimal ammount)
 {
     try
     {
         SqlRunner.WithdrawFromAccount(account, ammount);
     }
     catch (Exception)
     {
         view.DisplayWithdrawError();
         Console.ReadKey();
     }
 }