Exemple #1
0
 public bool RemoveAccount(int accountID)
 {
     if (_accountDAO.RemoveAccount(accountID) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }