Пример #1
0
 public GSM(string model, string manufacturer, Battery battery, Display display)
 {
     Model = model;
     Manufacturer = manufacturer;
     Price = null;
     Owner = null;
     this.battery = battery;
     this.display = display;
 }
Пример #2
0
 public GSM(string model, string manufacturer, int price)
 {
     Model = model;
     Manufacturer = manufacturer;
     Price = price;
     Owner = null;
     this.battery = null;
     this.display = null;
 }
Пример #3
0
 public GSM(string model, string manufacturer, string owner)
 {
     Model = model;
     Manufacturer = manufacturer;
     Price = null;
     Owner = owner;
     this.battery = null;
     this.display = null;
 }
Пример #4
0
 // Задача 2
 public GSM(string model, string manufacturer, int price, string owner, Battery battery, Display display)
 {
     Model = model;
     Manufacturer = manufacturer;
     Price = price;
     Owner = owner;
     this.battery = battery;
     this.display = display;
 }