/// <summary> /// Obtiene un lista paginada /// </summary> /// <param name="pagina"></param> /// <param name="filtro"></param> /// <returns></returns> internal ResultadoInfo <RuteoDetalleInfo> ObtenerDetallePorPagina(PaginacionInfo pagina, RuteoInfo filtro) { ResultadoInfo <RuteoDetalleInfo> lista = null; try { Dictionary <string, object> parameters = AuxRuteoDAL.ObtenerParametrosDetallePorPagina(pagina, filtro); DataSet ds = Retrieve("AdministracionRuteoDetalle_ObtenerPorPagina", parameters); if (ValidateDataSet(ds)) { lista = MapRuteoDAL.ObtenerDetallePorPagina(ds); } } 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); } return(lista); }
/// <summary> /// Obtiene un ruteo por id /// </summary> /// <param name="filtro"></param> /// <returns></returns> internal RuteoInfo ObtenerPorID(int filtro) { RuteoInfo lista = null; try { Dictionary <string, object> parameters = AuxRuteoDAL.ObtenerParametrosPorID(filtro); DataSet ds = Retrieve("AdministracionRuteo_ObtenerPorID", parameters); if (ValidateDataSet(ds)) { lista = MapRuteoDAL.ObtenerPorID(ds); } } 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); } return(lista); }