예제 #1
0
 public Account(Customer customer, decimal balance, decimal interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
     //this.Period = period;
 }
예제 #2
0
 public Deposit(Customer customer, decimal balance, decimal interestRate)
     : base(customer,balance,interestRate)
 {
 }
 public Mortgage(Customer customer, decimal balance, decimal interestRate)
     : base(customer,balance,interestRate)
 {
 }
예제 #4
0
 public Loan(Customer customer, decimal balance, decimal interestRate)
     : base(customer,balance,interestRate)
 {
 }