BankSystem.Bank.RemoveAccount C# (CSharp) Method

RemoveAccount() public method

public RemoveAccount ( Account account ) : void
account Account
return void
        public void RemoveAccount(Account account)
        {
            this.accounts.Remove(account);
            this.accountsCount--;
        }