BankSystem.Common.DepositAccount.DepositAccount C# (CSharp) Method

DepositAccount() public method

public DepositAccount ( Customer customer, decimal balance, decimal interestRate ) : System
customer Customer
balance decimal
interestRate decimal
return System
        public DepositAccount(Customer customer, decimal balance, decimal interestRate)
            : base(customer, balance, interestRate)
        {
        }