Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public GSM(string model, string manufacturer, int price)
 {
     Model = model;
     Manufacturer = manufacturer;
     Price = price;
     Owner = null;
     this.battery = null;
     this.display = null;
 }
Exemplo n.º 3
0
 public GSM(string model, string manufacturer, string owner)
 {
     Model = model;
     Manufacturer = manufacturer;
     Price = null;
     Owner = owner;
     this.battery = null;
     this.display = null;
 }
Exemplo n.º 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;
 }