public void Arrange()
        {
            _repo = new KomodoMenuRepo();
            _meal = new KomodoMenu(01, "Tex Mex Eggrolls", "Eggrolls stuffed with spicy chicken mix. Served with Avocado Cream and Pico de Gallo", "Spicy Chicken, corn, black beans, peppers, onions and melted cheese.", 12.50, FoodType.Appetizer);

            _repo.AddMealToList(_meal);
        }
        public void AddToList_ShouldGetNotNull()
        {
            //Arrange --> Setting up the playing field
            KomodoMenu meal = new KomodoMenu();

            meal.MealNumber = 9;
            KomodoMenuRepo repository = new KomodoMenuRepo();

            //Act --> Get/run the code we want to test
            repository.AddMealToList(meal);
            KomodoMenu mealFromDirectory = repository.GetMealByMealNumber(9);

            //Assert --> Use the assert class to verify the expected outcome
            Assert.IsNotNull(mealFromDirectory);
        }