Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 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;
 }
Example #4
0
 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;
 }
Example #5
0
 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;
 }