BankSystem.Common.Bank.RemoveAccount C# (CSharp) Method

RemoveAccount() public method

public RemoveAccount ( BankSystem.Common.Account account ) : void
account BankSystem.Common.Account
return void
        public void RemoveAccount(Account account)
        {
            this.accounts.Remove(account);
        }
        public override string ToString()