public IActionResult CreateIngredient([FromBody] Ingredient newIngredient) { //Book toevoegen in de databank, Id wordt dan ook toegekend context.Ingredients.Add(newIngredient); context.SaveChanges(); // Stuur een result 201 met het boek als content return(Created("", newIngredient)); }
public IActionResult CreateMeal([FromBody] Meal newMeal) { newMeal.MostUsedIngredient = context.Ingredients.SingleOrDefault(d => d.Name == newMeal.MostUsedIngredient.Name); if (newMeal.MostUsedIngredient == null) { return(NotFound()); } context.Meals.Add(newMeal); context.SaveChanges(); return(Created("", newMeal)); }