BankSystem.Account.Account C# (CSharp) Method

Account() protected method

protected Account ( )
        protected Account()
        {
            this.customer = CustromerType.Individual;
            this.balance = decimal.MinValue;
            this.interestRate = decimal.MinValue;
        }

Same methods

Account::Account ( CustromerType customer, decimal balance, decimal interestRate )