public async Task<IHttpActionResult> PostAerolinea(Aerolinea aerolinea) { if (!ModelState.IsValid) { return BadRequest(ModelState); } db.Aerolineas.Add(aerolinea); try { await db.SaveChangesAsync(); } catch (DbUpdateException) { if (AerolineaExists(aerolinea.Id)) { return Conflict(); } else { throw; } } return CreatedAtRoute("DefaultApi", new { id = aerolinea.Id }, aerolinea); }
public async Task<IHttpActionResult> PutAerolinea(int id, Aerolinea aerolinea) { if (!ModelState.IsValid) { return BadRequest(ModelState); } if (id != aerolinea.Id) { return BadRequest(); } db.Entry(aerolinea).State = EntityState.Modified; try { await db.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AerolineaExists(id)) { return NotFound(); } else { throw; } } return StatusCode(HttpStatusCode.NoContent); }