コード例 #1
0
ファイル: Account.cs プロジェクト: petromaxa/SoftwareAcademy
 //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
ファイル: Accaunt.cs プロジェクト: kikooo52/C-Programs
 public Accaunt(Customer Customer, decimal balans, decimal interestRate)
 {
     this.Balans = balans;
     this.customer = Customer;
     this.InterestRate = interestRate;
 }
コード例 #3
0
 public LoanAccount(Customer customer, decimal balance, decimal interestRate)
     : base(customer, balance, interestRate)
 {
 }
コード例 #4
0
ファイル: Mortage.cs プロジェクト: petromaxa/SoftwareAcademy
 //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
ファイル: LoanAccount.cs プロジェクト: kikooo52/C-Programs
 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;
 }