public IHttpActionResult PostStudent(Student student) { if (!ModelState.IsValid) { return BadRequest(ModelState); } db.Students.Add(student); try { db.SaveChanges(); } catch (DbUpdateException) { if (StudentExists(student.StudentID)) { return Conflict(); } else { throw; } } return CreatedAtRoute("DefaultApi", new { id = student.StudentID }, student); }
public IHttpActionResult PutStudent(int id, Student student) { if (!ModelState.IsValid) { return BadRequest(ModelState); } if (id != student.StudentID) { return BadRequest(); } db.Entry(student).State = EntityState.Modified; try { db.SaveChanges(); } catch (DbUpdateConcurrencyException) { if (!StudentExists(id)) { return NotFound(); } else { throw; } } return StatusCode(HttpStatusCode.NoContent); }