Ejemplo n.º 1
0
 public GSM(string model, string manufacturer, decimal? price, string owner, Battery battery, Display display)
 {
     this.Model = model;
     this.Manufacturer = manufacturer;
     this.Price = price;
     this.Owner = owner;
     this.battery = battery;
     this.display = display;
 }
Ejemplo n.º 2
0
 public GSM(string model, string manufacturer, decimal? price, string owner, Display display)
     : this(model, manufacturer, price, owner, null, display)
 {
 }