private void RemoveMenu()
        {
            Console.Clear();
            PrintAllMenus();

            Console.WriteLine("What is the meal number that you want to remove?");
            string mealNumber = Console.ReadLine();

            bool success = _menuRepo.RemoveMenu(mealNumber);

            if (success == true)
            {
                Console.WriteLine($"Meal number for {mealNumber} was successfully removed. press any key to continue");
                Console.ReadKey();
            }
            else
            {
                Console.WriteLine($"The order for {mealNumber} was unable to be removed at this time. press any key to continue");
                Console.ReadKey();
                Console.Clear();
                Menu();
            }
        }