public Bank RemoveAccout(Account account) { this.accounts.Remove(account); return this; }
//Methods public void AddAccount(Account newAccount) { this.allAccounts.Add(newAccount); }