예제 #1
0
 public GSM(string model, string manufacturer, decimal? price = null, string owner = null, Battery battery = null, Display display = null) 
     : this(model, manufacturer)
 {
     this.Price = price;
     this.Owner = owner;
     this.Battery = battery;
     this.Display = display;
 }
예제 #2
0
 public GSM(string model, string manufacturer, Display display)
     : this(model, manufacturer)
 {
     this.Display = display;
 }