public Monitor(string manufacturer, string model, decimal price, uint count, bool hasTuner, VideoFormat[] formats, Display display) : base(manufacturer, model, price, count) { this.hasTuner = hasTuner; this.formats = formats; this.display = display; }
public DvdPlayer(string manufacturer, string model, decimal price, uint count, Dimensions dimentions, VideoFormat[] formats, Display display) : base(manufacturer, model, price, count) { this.dimentions = dimentions; this.formats = formats; this.display = display; }
public TV(string manufacturer, string model, decimal price, uint count, string boxingColor, VideoFormat[] formats, Display display) : base(manufacturer, model, price, count) { this.boxingColor = boxingColor; this.formats = formats; this.display = display; }
public MP3Player(string manafacturer, string model, decimal price, uint count, int memory, SoundFormat[] supportedFormats, Display display,Frequency frequencyRange, int power) : base(manafacturer, model, price, count) { this.Memory = memory; this.SupportedFormats = supportedFormats; this.Display = display; this.FrequencyRange = frequencyRange; this.Power = power; }
public HomeTheatre(string manafacturer, string model, decimal price, uint count, Frequency frequencyRange, int power, VideoFormat[] formats, Display display, Amplifier amplifier, Speakers[] speakers, TV tv, DvdPlayer dvdPlayer) : base(manafacturer, model, price, count) { this.FrequencyRange = frequencyRange; this.Power = power; this.Formats = formats; this.Display = display; this.Amplifier = amplifier; this.Speakers = speakers; this.TV = tv; this.DVDPlayer = dvdPlayer; }