// PUT api/PadreEstudiante/5 public async Task <IHttpActionResult> PutEstudiantePadre(int id, EstudiantePadre estudiantepadre) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != estudiantepadre.Id) { return(BadRequest()); } db.Entry(estudiantepadre).State = EntityState.Modified; try { await db.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EstudiantePadreExists(id)) { return(NotFound()); } else { throw; } } return(StatusCode(HttpStatusCode.NoContent)); }
public async Task <IHttpActionResult> GetEstudiantePadre(int id) { EstudiantePadre estudiantepadre = await db.EstudiantePadres.FindAsync(id); if (estudiantepadre == null) { return(NotFound()); } return(Ok(estudiantepadre)); }
public async Task <IHttpActionResult> PostEstudiantePadre(EstudiantePadre estudiantepadre) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } db.EstudiantePadres.Add(estudiantepadre); await db.SaveChangesAsync(); return(CreatedAtRoute("DefaultApi", new { id = estudiantepadre.Id }, estudiantepadre)); }
public async Task <IHttpActionResult> DeleteEstudiantePadre(int id) { EstudiantePadre estudiantepadre = await db.EstudiantePadres.FindAsync(id); if (estudiantepadre == null) { return(NotFound()); } db.EstudiantePadres.Remove(estudiantepadre); await db.SaveChangesAsync(); return(Ok(estudiantepadre)); }