Example #1
0
 public void RemoveAccount(Account acc)
 {
     try
     {
         AccountC inter = new AccountC();
         inter.RemoveAcc(acc);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Example #2
0
 public void DeleteAccount(string accNum)
 {
     inter.RemoveAcc(FindAccount(accNum));
 }