コード例 #1
0
ファイル: GSM.cs プロジェクト: NikolaiMishev/Telerik-Academy
 public GSM(string manifacturer, string model, int price, string owner, Battery battery, Display display)
     : this(manifacturer, model)
 {
     this.Price = price;
     this.Owner = owner;
     this.Battery = battery;
     this.Display = display;
 }
コード例 #2
0
ファイル: GSM.cs プロジェクト: plwh/TelerikHomework
 public GSM(string model, string manufacturer, double price, string owner,Battery battery, Display display,List<Call> calls)
 {
     this.Model = model;
     this.Manufacturer = manufacturer;
     this.Price = price;
     this.Owner = owner;
     this.Display = display;
     this.Battery = battery;
     this.CallHistory = new List<Call>();
 }