static void Main(string[] args)
        {
            // this is the main

            // this starts the UserInterface class
            Console.Clear();
            UserInterface load = new UserInterface();
            load.MainMenu();
        }
        static void Main(string[] args)
        {
            int windowheight = 60;
            int windowwidth = 160;

            UserInterface MainMenu = new UserInterface();

            Console.BufferHeight = 8000;
            Console.BufferWidth = 100;
            Console.SetWindowSize(windowwidth, windowheight);

            MainMenu.MainMenu();
        }
        static void Main(string[] args)
        {
            //Variables for windows size
            int windowheight = 60;
            int windowwidth = 160;

            //Create a new instance of the UserInterface class
            UserInterface MainMenu = new UserInterface();

            //Set window height and width large enough to see wine list
            Console.BufferHeight = 8000;
            Console.BufferWidth = 100;
            Console.SetWindowSize(windowwidth, windowheight);

            //Call MainMenu method from UI class to begin program
            MainMenu.MainMenu();
        }