示例#1
0
 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));
 }
示例#2
0
 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));
 }