public void EndMovie()
 {
     Console.WriteLine("Shutting movie theater down...");
     _popcornPopper.Off();
     _theaterLights.On();
     _screen.Up();
     _projector.Off();
     _amplifier.Off();
     _dvdPlayer.Stop();
     _dvdPlayer.Eject();
     _dvdPlayer.Off();
 }
 public void EndMovie()
 {
     Console.WriteLine("Shutting movie theater down...");
     popper.Off();
     lights.On();
     screen.Up();
     projector.Off();
     amp.Off();
     dvd.Stop();
     dvd.Eject();
     dvd.Off();
 }