Exemplo n.º 1
0
 public Speakers(string manafacturer, string model, decimal price, uint count, double size, 
     double sensitivity, Frequency frequencyRange, int power)
     : base(manafacturer, model, price, count)
 {
     this.Size = size;
     this.Sensitivity = sensitivity;
     this.FrequencyRange = frequencyRange;
     this.Power = power;
 }
Exemplo n.º 2
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;
 }
Exemplo n.º 3
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;
 }