예제 #1
0
 public void RemoveAccount(Account remAccount)
 {
     this.accounts.Remove(remAccount);
     this.accountsCount--;
 }
예제 #2
0
 public void AddAccount(Account newAccount)
 {
     this.accounts.Add(newAccount);
     this.accountsCount++;
 }