Ejemplo n.º 1
0
 public void WatchMovie(string title)
 {
     Console.WriteLine($"Getting ready to watch a movie ...: {title}");
     _amplifier.On();
     _amplifier.SurroundSoundOn();
     _amplifier.SetVolume(30);
     _projector.On();
     _dvdPlayer.On();
     _dvdPlayer.Play();
 }
 public void WatchMovie(string movie)
 {
     _lights.Dim(10);
     _screen.Down();
     _projector.On();
     _projector.WideScreenMode();
     _amp.On();
     _amp.SetDvd(_dvd);
     _amp.SetSurroundSound();
     _amp.SetVolume(5);
     _dvd.On();
     _dvd.Play(movie);
 }
 public void WatchMovie(string movie)
 {
     Console.WriteLine("Get ready to watch a movie...");
     _popper.On();
     _popper.Pop();
     _lights.Dim(10);
     _screen.Down();
     _projector.On();
     _projector.WideScreenMode();
     _amp.On();
     _amp.SetDvd(_dvd);
     _amp.SetSurroundSound();
     _amp.SetVolume(5);
     _dvd.On();
     _dvd.Play(movie);
 }