public bool RemoveAccount(Account account) { if (accountStorage.RemoveAccount(account.ID)) { return(true); } else { return(false); } }