コード例 #1
0
 public Customers(string Name, AcountsType Type, decimal Balance, decimal InterestRate) : base(Type, Balance, InterestRate)
 {
     this.Name         = Name;
     this.Type         = Type;
     this.Balance      = Balance;
     this.InterestRate = InterestRate;
 }
コード例 #2
0
ファイル: Acount.cs プロジェクト: CatalinaDominte/OOP-Tema4
 protected Acount(AcountsType Type, decimal Balance, decimal InterestRate) //, DateTime Date)
 {
     this.Type         = Type;
     this.Balance      = Balance;
     this.InterestRate = InterestRate;
     //this.Date = Date;
 }
コード例 #3
0
 public Individuals(string Name, AcountsType Type, decimal Balance, decimal InterestRate) : base(Name, Type, Balance, InterestRate)
 {
 }
コード例 #4
0
 public Companies(string Name, AcountsType Type, decimal Balance, decimal InterestRate) : base(Name, Type, Balance, InterestRate)
 {
 }