protected CustomerAcount(Customer customer, decimal balance, decimal interestRate)
 {
     this.currentCustomer = customer;
     this.balance = balance;
     this.interestRate = interestRate;
     accountCreationDate = DateTime.Now;
 }
 public Deposit(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
 public Mortgage(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
Exemple #4
0
 public Loan(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }