internal ResultadoInfo <CuentaGastosInfo> ObtenerPorPagina(PaginacionInfo pagina, CuentaGastosInfo filtros) { try { Dictionary <string, object> parameters = AuxCuentaGastosDAL.ObtenerParametrosPorPagina(pagina, filtros); DataSet ds = Retrieve("[dbo].[CuentaGastos_ObtenerPorPagina]", parameters); ResultadoInfo <CuentaGastosInfo> result = null; if (ValidateDataSet(ds)) { result = MapCuentaGastosDAL.ObtenerPorPagina(ds); } return(result); } catch (SqlException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (DataException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }
/// <summary> /// Metodo que actualiza un una cuenta de gastos /// </summary> /// <param name="info"></param> internal void Actualizar(CuentaGastosInfo info) { try { Dictionary <string, object> parameters = AuxCuentaGastosDAL.ObtenerParametrosActualizar(info); Update("CuentaGastos_Actualizar", parameters); } catch (SqlException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (DataException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }