private void CreateNewMenuItem()
        {
            MenuItems newItem = new MenuItems();

            //Meal Number
            Console.WriteLine("Enter the meal number for the new item:");
            string mealNumberAsString = Console.ReadLine();

            newItem.MealNumber = int.Parse(mealNumberAsString);
            //Meal Name
            Console.WriteLine("Enter the name of the new item:");
            newItem.MealName = Console.ReadLine();
            //Meal Description
            Console.WriteLine("Enter a brief description of the new item:");
            newItem.MealDescription = Console.ReadLine();
            //Meal indredients
            Console.WriteLine("Enter the ingredients in the new item:");
            newItem.MealIngredients = Console.ReadLine();
            //Meal Price
            Console.WriteLine("Enter the price of the new item:");
            string priceAsString = Console.ReadLine();

            newItem.MealPrice = double.Parse(priceAsString);
            _menuRepo.AddMenuItemsToList(newItem);
        }