public void RemoveAccount(Account remAccount) { this.accounts.Remove(remAccount); this.accountsCount--; }
public void AddAccount(Account newAccount) { this.accounts.Add(newAccount); this.accountsCount++; }