Ejemplo n.º 1
0
 public void RemoveAccount(Account remAccount)
 {
     this.accounts.Remove(remAccount);
     this.accountsCount--;
 }
Ejemplo n.º 2
0
 public void AddAccount(Account newAccount)
 {
     this.accounts.Add(newAccount);
     this.accountsCount++;
 }