BankSystem.Bank.Bank C# (CSharp) Method

Bank() public method

public Bank ( ) : System.Collections.Generic
return System.Collections.Generic
        public Bank()
        {
            this.accounts = new List<Account>();
            this.accountsCount = 0;
        }

Same methods

Bank::Bank ( List accounts ) : System.Collections.Generic