public async Task Create(RegistroEvaluacionesSind model) { try { _db.registroEvaluacionSind.Add(model); await _db.SaveChangesAsync(); } catch (Exception e) { throw new Exception(e.Message, e); } }
public async Task <IHttpActionResult> Update(RegistroEvaluacionesSind datos) { try { log.Info(new MDCSet(this.ControllerContext.RouteData)); await _repository.Update(datos); return(Ok("Nivel de competencia actualizado correctamente!")); } catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e); return(InternalServerError(e)); } }
[HttpPost][Authorize] public async Task <IHttpActionResult> Create(RegistroEvaluacionesSind datos) { try { log.Info(new MDCSet(this.ControllerContext.RouteData)); await _repository.Create(datos); return(Ok("Nivel de competencia asignado correctamente a la categoría")); } catch (Exception e) { log.Error(new MDCSet(this.ControllerContext.RouteData), e); return(InternalServerError(e)); } }
public async Task Update(RegistroEvaluacionesSind model) { try { var _model = await _db.registroEvaluacionSind.FirstOrDefaultAsync(e => e.id == model.id); if (_model != null) { _db.Entry(_model).CurrentValues.SetValues(model); await _db.SaveChangesAsync(); } } catch (Exception e) { throw new Exception(e.Message, e); } }