public async Task<IHttpActionResult> PostFormula(Formula formula) { if (!ModelState.IsValid) { return BadRequest(ModelState); } db.Formula.Add(formula); try { await db.SaveChangesAsync(); } catch (DbUpdateException) { if (FormulaExists(formula.RecipeID)) { return Conflict(); } else { throw; } } return CreatedAtRoute("DefaultApi", new { id = formula.RecipeID }, formula); }
public async Task<IHttpActionResult> PutFormula(int id, Formula formula) { if (!ModelState.IsValid) { return BadRequest(ModelState); } if (id != formula.RecipeID) { return BadRequest(); } db.Entry(formula).State = EntityState.Modified; try { await db.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!FormulaExists(id)) { return NotFound(); } else { throw; } } return StatusCode(HttpStatusCode.NoContent); }