示例#1
0
 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;
 }
示例#2
0
 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>();
 }
示例#3
0
		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;
		}
示例#4
0
		public GSM(string model, string manufacturer, Display display) { this.Display = display; }