public async Task <IActionResult> PutRol(int id, Rol rol) { if (id != rol.idrol) { return(BadRequest()); } _context.Entry(rol).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RolExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutDetector(int id, Detector detector) { if (id != detector.iddetector) { return(BadRequest()); } _context.Entry(detector).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DetectorExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }