public IEnumerable <Ingredient> GetSelectedReciepeIngredients(Receipe reciep) { this.ingredientRepository.OpenConnection(); var result = ingredientRepository.GetReciepIngredients(reciep); this.ingredientRepository.CloseConnection(); return(result); }