public async Task Create(PlanNegocioEvolArchivos model) { try { dbGI.DbSetPlanNegocioEvolArchivos.Add(model); await dbGI.SaveChangesAsync(); } catch (Exception e) { throw new Exception(e.Message, e); } }
public async Task Update(PlanNegocioEvolArchivos model) { try { var _model = await dbGI.DbSetPlanNegocioEvolArchivos.FirstOrDefaultAsync(e => e.Id == model.Id); if (_model != null) { dbGI.Entry(_model).CurrentValues.SetValues(model); await dbGI.SaveChangesAsync(); } } catch (Exception e) { throw new Exception(e.Message, e); } }
public async Task <IHttpActionResult> Update([FromBody] PlanNegocioEvolArchivos model) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } try { await _repo.Update(model); return(Ok("Registro actualizado exitosamente!")); } catch (Exception e) { return(InternalServerError(e)); } }