public async Task <ActionResult <ProfesorItem> > PostProfesorItem(ProfesorItem item) { _context.ProfesorItems.Add(item); await _context.SaveChangesAsync(); return(CreatedAtAction(nameof(GetProfesorItem), new { id = item.Identificacion }, item)); }
public async Task <IActionResult> PutProfesorItem(string identificacion, ProfesorItem item) { if (identificacion != item.Identificacion) { return(BadRequest()); } _context.Entry(item).State = EntityState.Modified; await _context.SaveChangesAsync(); return(NoContent()); }