public void KomodoCafeAddCafeToList()
        {
            _CafeRepo.AddCafeToList(_Cafe);

            int expected = 1;
            int actual   = _CafeRepo.GetKomodoCafeList().Count;

            Assert.AreEqual(expected, actual);
        }
        private void ShowAllMenuItems()
        {
            List <KomodoCafe> listOfCafe = _challengeOne.GetKomodoCafeList();

            foreach (KomodoCafe cafe in listOfCafe)
            {
                Console.WriteLine($"{cafe.MealNumber}:" +
                                  $" {cafe.MealName}\n" +
                                  $"{cafe.Description}\n" +
                                  $"Price: {cafe.Price} dollars \n");
            }
            Console.WriteLine("Press any key to continue.");
            Console.ReadKey();
        }