public InteresGenero ObtenerPorId(int id) { InteresGenero resultado = new InteresGenero(); try { const string query = "Maestro.usp_InteresGenero_ObtenerPorId"; using (var cn = HelperClass.ObtenerConeccion()) { if (cn.State == ConnectionState.Closed) { cn.Open(); } resultado = cn.QuerySingleOrDefault <InteresGenero>(query, new { IdInteresGenero = id }, commandType: CommandType.StoredProcedure); } } catch (Exception ex) { Log(Level.Error, (ex.InnerException == null ? ex.Message : ex.InnerException.Message)); } return(resultado); }
public int Modificar(InteresGenero modelo) { int resultado = 0; try { const string query = "Maestro.usp_InteresGenero_Modificar"; using (var cn = HelperClass.ObtenerConeccion()) { if (cn.State == ConnectionState.Closed) { cn.Open(); } resultado = cn.Execute(query, new { modelo.IdInteresGenero, modelo.Descripcion }, commandType: CommandType.StoredProcedure); } } catch (Exception ex) { Log(Level.Error, (ex.InnerException == null ? ex.Message : ex.InnerException.Message)); } return(resultado); }
public int Modificar(InteresGenero modelo) { return(_adInteresGenero.Modificar(modelo)); }
public async Task <ActionResult <InteresGeneroResponseModificarDto> > Modificar(int id, [FromBody] InteresGenero modelo) { InteresGeneroResponseModificarDto respuesta = new InteresGeneroResponseModificarDto(); if (!ModelState.IsValid) { respuesta.ListaError.Add(new ErrorDto { Mensaje = "Los parametros enviados no son correctos" }); return(BadRequest(respuesta)); } var entidad = await Task.FromResult(_lnInteresGenero.ObtenerPorId(modelo.IdInteresGenero)); if (entidad == null) { respuesta.ListaError.Add(new ErrorDto { Mensaje = "Objeto no encontrado con el ID proporcionado" }); return(NotFound(respuesta)); } var result = await Task.FromResult(_lnInteresGenero.Modificar(modelo)); if (result == 0) { respuesta.ListaError.Add(new ErrorDto { Mensaje = "Error al intentar modificar" }); return(BadRequest(respuesta)); } respuesta.ProcesadoOk = true; return(Ok(respuesta)); }