public IHttpActionResult PutIngredient(string id, Ingredient ingredient) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != ingredient.Id) { return(BadRequest()); } db.Entry(ingredient).State = EntityState.Modified; try { db.SaveChanges(); } catch (DbUpdateConcurrencyException) { if (!IngredientExists(id)) { return(NotFound()); } else { throw; } } return(StatusCode(HttpStatusCode.NoContent)); }
public IHttpActionResult PutCook(int id, Cook cook) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != cook.Id) { return(BadRequest()); } db.Entry(cook).State = EntityState.Modified; try { db.SaveChanges(); } catch (DbUpdateConcurrencyException) { if (!CookExists(id)) { return(NotFound()); } else { throw; } } return(StatusCode(HttpStatusCode.NoContent)); }