public IEnumerable <Ingredient> GetIngredientsByRecipeId(int id) { IEnumerable <Ingredient> ingredients = _repo.GetIngredientsByRecipeId(id); return(ingredients); }