public bool AddAccount(AccountBase newAccount) { if (accounts.Count < this.MaxCountAccounts) { accounts.Add(newAccount); return(true); } else { Console.WriteLine($"Невозможно добавить новый счет к клиенту {this.Id}, количество счетов не может превышать {this.MaxCountAccounts}"); return(false); } }
public void AddAccount(AccountBase newAccount) { accounts.Add(newAccount); }