public GSM(string model, string manufacturer, double price, string owner, Battery battery, Display display) { this.Model = model; this.Manufacturer = manufacturer; this.Price = price; this.Owner = owner; this.phoneBattery = battery; this.phoneDisplay = display; }
public MobilePhone(string manufacturer, string model, decimal? price, string owner, Battery battery, Display display) { this.manufacturer = manufacturer; this.model = model; this.price = price; this.owner = owner; this.battery = battery; this.display = display; this.phoneCallsList = new List<Call>(); }
public GSM(string model, string manufacturer, double? price, string owner, Battery battery, Display display, List<Call> callHistory) { this.Model = model; this.Manucfacturer = manufacturer; this.Price = price; this.Owner = owner; this.Battery = battery; this.Display = display; this.CallHistory = callHistory; }
public GSM(string model, string manufacturer, Display display) { this.Display = display; }