public GSM(string model, string manuf, string owner, double price, Battery battery, Display display)
 {
     this.model = model;
     this.manufacturer = manuf;
     this.owner = owner;
     this.price = price;
     this.battery = battery;
     this.display = display;
 }