Esempio n. 1
0
		// Constructor
		public Loan(Customer customer, decimal balance, decimal interestRate)
			: base(customer, balance, interestRate) { }
Esempio n. 2
0
		protected Account(Customer customer, decimal balance, decimal interestRate)
		{
			this.Customer = customer;
			this.Balance = balance;
			this.InterestRate = interestRate;
		}
Esempio n. 3
0
		// Constructor
		public Deposit(Customer customer, decimal balance, decimal interestRate)
			: base(customer, balance, interestRate) { }
Esempio n. 4
0
		// Constructor
		public Mortgage(Customer customer, decimal balance, decimal interestRate)
			: base(customer, balance, interestRate) { }