public DepositAccount(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
 public LoanAccounts(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
예제 #3
0
 protected Account(Customer customer, decimal balance, decimal monthInterest)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.MonthInterest = monthInterest;
 }
예제 #4
0
 public Account(Customer customer, double balance, double interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }
예제 #5
0
 public Mortgage(Customer customer, decimal balance, decimal monthInterest)
     : base(customer, balance, monthInterest)
 {
 }
 public MortgageAccount(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }