private void RemoveMenuItem()
        {
            Console.WriteLine("Please selece the number of the Item you Would Like to Remove.");
            int num = Convert.ToInt32(Console.ReadLine());

            menuRepo.RemoveItemByNumber(num);
            InitialPrompt();
        }