//Create new menu option
        private void CreateNewOption()
        {
            Console.Clear();
            Menu newMenu = new Menu();

            //Item Number
            Console.WriteLine("Enter the Item Number");
            string ItemasString = Console.ReadLine();

            newMenu.ItemNumber = int.Parse(ItemasString);

            //Name
            Console.WriteLine("Enter the name of the Menu Item");
            newMenu.Name = Console.ReadLine();

            //Description
            Console.WriteLine("Enter the description of the menu item");
            newMenu.Description = Console.ReadLine();

            //Price
            Console.WriteLine("Enter the price of this item");
            string PriceAsString = Console.ReadLine();

            newMenu.Price = double.Parse(PriceAsString);

            _menuItemRepo.AddFoodToList(newMenu);
        }