コード例 #1
0
 public Deposite(Customer customer, decimal balance, decimal interest)
     : base(customer, balance, interest)
 {
 }
コード例 #2
0
 public Deposit(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #3
0
 public Loan(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #4
0
 public Mortgage(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #5
0
ファイル: Account.cs プロジェクト: krumov/telerik
 //Constructor
 public Account(Customer customer, decimal balance, decimal interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }
コード例 #6
0
 public Deposit(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #7
0
ファイル: MortageAccount.cs プロジェクト: krumov/telerik
 //Constructor
 public MortageAccount(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #8
0
 public Loan(Customer customer, double balance, double interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #9
0
 public Mortgage(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #10
0
 public Acount(Customer customer, double balance, double interestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
 }