public HomeTheaterFacade(
     Amplifier amplifier,
     CdPlayer cdPlayer,
     DvdPlayer dvdPlayer,
     PopcornPopper popcornPopper,
     Projector projector,
     Screen screen,
     TheaterLights theaterLights,
     Tuner tuner
     )
 {
     this.amplifier     = amplifier;
     this.cdPlayer      = cdPlayer;
     this.dvdPlayer     = dvdPlayer;
     this.popcornPopper = popcornPopper;
     this.projector     = projector;
     this.screen        = screen;
     this.theaterLights = theaterLights;
     this.tuner         = tuner;
 }
Exemplo n.º 2
0
 public void SetTuner(Tuner tuner)
 {
     this.tuner = tuner;
 }