Exemple #1
0
        public IEnumerable <Ingredient> GetSelectedReciepeIngredients(Receipe reciep)
        {
            this.ingredientRepository.OpenConnection();
            var result = ingredientRepository.GetReciepIngredients(reciep);

            this.ingredientRepository.CloseConnection();
            return(result);
        }