Exemplo n.º 1
0
        public Bank RemoveAccout(Account account)
        {
            this.accounts.Remove(account);

            return this;
        }
Exemplo n.º 2
0
 //Methods
 public void AddAccount(Account newAccount)
 {
     this.allAccounts.Add(newAccount);
 }