/// <summary> /// Obtiene un lista paginada /// </summary> /// <param name="pagina"></param> /// <param name="filtro"></param> /// <returns></returns> public ResultadoInfo <CentroCostoInfo> ObtenerPorPagina(PaginacionInfo pagina, CentroCostoInfo filtro) { try { Dictionary <string, object> parameters = AuxCentroCostoDAL.ObtenerParametrosPorPagina(pagina, filtro); DataSet ds = Retrieve("CentroCosto_ObtenerPorPagina", parameters); ResultadoInfo <CentroCostoInfo> result = null; if (ValidateDataSet(ds)) { result = MapCentroCostoDAL.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> /// Obtiene una lista filtrando por el estatus Activo = 1, Inactivo = 0 /// </summary> /// <returns></returns> public IList <CentroCostoInfo> ObtenerTodos(EstatusEnum estatus) { try { Logger.Info(); Dictionary <string, object> parameters = AuxCentroCostoDAL.ObtenerTodos(estatus); DataSet ds = Retrieve("CentroCosto_ObtenerTodos", parameters); IList <CentroCostoInfo> result = null; if (ValidateDataSet(ds)) { result = MapCentroCostoDAL.ObtenerTodos(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> /// Obtiene un registro de CentroCosto /// </summary> /// <param name="descripcion">Descripción de la CentroCosto</param> /// <returns></returns> public CentroCostoInfo ObtenerPorDescripcion(string descripcion) { try { Logger.Info(); Dictionary <string, object> parameters = AuxCentroCostoDAL.ObtenerParametrosPorDescripcion(descripcion); DataSet ds = Retrieve("CentroCosto_ObtenerPorDescripcion", parameters); CentroCostoInfo result = null; if (ValidateDataSet(ds)) { result = MapCentroCostoDAL.ObtenerPorDescripcion(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> /// Obtiene una lista de CentroCosto /// </summary> /// <returns></returns> public IList <CentroCostoInfo> ObtenerTodos() { try { Logger.Info(); DataSet ds = Retrieve("CentroCosto_ObtenerTodos"); IList <CentroCostoInfo> result = null; if (ValidateDataSet(ds)) { result = MapCentroCostoDAL.ObtenerTodos(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); } }