public async Task <IActionResult> PutCategoriaTrabajo([FromRoute] int id, [FromBody] CategoriaTrabajo categoriaTrabajo) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != categoriaTrabajo.Id) { return(BadRequest()); } _context.Entry(categoriaTrabajo).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CategoriaTrabajoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PostCategoriaTrabajo([FromBody] CategoriaTrabajo categoriaTrabajo) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } _context.CategoriaTrabajo.Add(categoriaTrabajo); await _context.SaveChangesAsync(); return(CreatedAtAction("GetCategoriaTrabajo", new { id = categoriaTrabajo.Id }, categoriaTrabajo)); }