Ejemplo n.º 1
0
 public MobilePhone(MobileManufacturer manufacturer, string model, Battery battery, Display display, MobileOS os) : this(manufacturer, model, display, battery)
 {
     this.OS    = os;
     this.OSSet = true;
 }
Ejemplo n.º 2
0
 public MobilePhone(MobileManufacturer manufaturer, string model, Display display) : this(manufaturer, model)
 {
     this.Display    = display;
     this.displaySet = true;
 }
Ejemplo n.º 3
0
 public MobilePhone(MobileManufacturer manufacturer, string model, Display display, Battery battery) : this(manufacturer, model, display)
 {
     this.Battery    = battery;
     this.batterySet = true;
 }
Ejemplo n.º 4
0
 public MobilePhone(MobileManufacturer manufacturer, string model) : base()
 {
     this.Manufacturer = manufacturer;
     this.Model        = model;
 }