public async Task <IActionResult> PutWeatherForeCast(long id, WeatherForeCast weatherForeCast) { if (id != weatherForeCast.Id) { return(BadRequest()); } _context.Entry(weatherForeCast).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!WeatherForeCastExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutUsuario(int id, Usuario usuario) { if (id != usuario.Id) { return(BadRequest()); } _context.Entry(usuario).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UsuarioExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutProcess(int id, Process process) { if (id != process.IdProcess) { return(BadRequest()); } _context.Entry(process).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProcessExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }