protected Account(Customer owner, decimal balance, 
     decimal monthlyInterestRate, ushort numberOfMonths)
 {
     this.Owner = owner;
     this.Balance = balance;
     this.MonthlyInterestRate = monthlyInterestRate;
     this.NumberOfMonths = numberOfMonths;
 }
Esempio n. 2
0
 public Loan(Customer owner, decimal balance, 
     decimal monthlyInterestRate, ushort numberOfMonths)
     : base(owner, balance, monthlyInterestRate, numberOfMonths)
 {
 }