コード例 #1
0
 protected Account(Customer customer, decimal balance, double interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }
コード例 #2
0
 public Loan(Customer customer, decimal balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #3
0
 public Mortgage(Customer customer, decimal balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }