Ejemplo n.º 1
0
 protected Account(Customer customer, decimal balance, decimal interestRate, int duration)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
     this.Duration = duration;
 }
Ejemplo n.º 2
0
 public Mortgage(Customer customer, decimal balance, decimal interestRate, int duration)
     : base(customer, balance, interestRate, duration)
 {
 }