Ejemplo n.º 1
0
 public Account(decimal balance, decimal interest, Customer customer)
 {
     this.Balance = balance;
     this.InterestRate = interest;
     this.customer = customer;
     this.creationDate = DateTime.Now;
 }
 public MortgageAccount(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
Ejemplo n.º 3
0
 public Account(Customer customer, decimal balance, decimal interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }
 public DepositAccount(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
Ejemplo n.º 5
0
 public MortgageAccount(decimal balance, decimal interest, Customer customer)
     : base(balance, interest, customer)
 {
 }
Ejemplo n.º 6
0
 public DepositAccount(decimal balance, decimal interestRate, Customer customer)
     : base(balance, interestRate, customer)
 {
 }