Пример #1
0
 //Constructor
 public Account(DateTime openingDate, decimal balance, decimal interestRate, Customer owner)
 {
     this.openingDate = openingDate;
     this.balance = balance;
     this.interestRate = interestRate;
     this.owner = owner;
 }
Пример #2
0
 public Accaunt(Customer Customer, decimal balans, decimal interestRate)
 {
     this.Balans = balans;
     this.customer = Customer;
     this.InterestRate = interestRate;
 }
 public LoanAccount(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
Пример #4
0
 //Constructors
 public Mortage(DateTime openingDate, decimal balance, decimal interestRate, Customer owner)
     : base(openingDate, balance, interestRate, owner)
 {
 }
Пример #5
0
 public MortgageAccounts(Customer customer, decimal Balans, decimal InterestRate)
     : base(customer, Balans, InterestRate)
 {
 }
Пример #6
0
 public DepositAccounts(Customer customer, decimal Balans, decimal InterestRate)
     : base(customer, Balans, InterestRate)
 {
 }
Пример #7
0
 public LoanAccount(Customer customer, decimal Balans, decimal InterestRate)
     : base(customer, Balans, InterestRate)
 {
 }
Пример #8
0
 public Account(Customer customer, decimal balance, decimal interestRate)
 {
     this.customer = customer;
     this.balance = balance;
     this.interestRate = interestRate;
 }