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