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.SetSurroundSound();
     _amp.SetVolume(10);
     _dvd.On();
     _dvd.PlayMovie(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();
     dvd.On();
     dvd.play(movie);
 }
 public void WatchMovie(string movie)
 {
     Console.WriteLine("Get ready to watch movie");
     _popcornPopper.On();
     _popcornPopper.Pop();
     _theaterLights.Dim();
     _screen.Down();
     _projector.On();
     _projector.WideScreenMode();
     _amplifier.On();
     _amplifier.SetDvd();
     _amplifier.SetSurroundSound();
     _amplifier.SetVolume(10);
     _dvdPlayer.On();
     _dvdPlayer.Play(movie);
 }