/// <summary>
 /// initialize the ConsoleView object
 /// </summary>
 public void InitializeUserConsoleView()
 {
     //
     // instantiate a new ConsoleView object
     //
     _userConsoleView = new ConsoleView(_myPlayer, _hall, _guestList, _staffList);
 }
        /// <summary>
        /// perform the game loop
        /// </summary>
        private void PlayGame()
        {
            //
            // instantiate a new ConsoleView object
            //
            _userConsoleView = new ConsoleView(_myPlayer, _hall, _guestList, _staffList);

            _userConsoleView.DisplayWelcomeScreen();

            _userConsoleView.DisplayAllObjectInformation();

            _userConsoleView.DisplayReset();
            _userConsoleView.DisplayExitPrompt();
        }