コード例 #1
0
ファイル: GSM.cs プロジェクト: iliantova/Telerik-Homework
 public GSM(string model, string manufacturer)
 {
     this.model = model;
     this.manufacturer = manufacturer;
     this.batteryCharacteristics = new Battery();
     this.displayCharacteristics = new Display();
 }
コード例 #2
0
ファイル: GSM.cs プロジェクト: iliantova/Telerik-Homework
 public GSM(string model, string manufacturer, double price, string owner, Battery battery, Display display)
 {
     this.model = model;
     this.manufacturer = manufacturer;
     this.price = price;
     this.owner = owner;
     this.batteryCharacteristics = battery;
     this.displayCharacteristics = display;
 }
コード例 #3
0
ファイル: GSM.cs プロジェクト: iliantova/Telerik-Homework
 public GSM(string model, string manufacturer, double price, string owner)
 {
     this.model = model;
     this.manufacturer = manufacturer;
     this.price = price;
     this.owner = owner;
     this.batteryCharacteristics = new Battery();
     this.displayCharacteristics = new Display();
 }