public List<GastoEntity> ListarDetallePaginado(Parametro pLista) { List<GastoEntity> lstGastoEntity = new List<GastoEntity>(); try { objInformeData = new InformeData(); lstGastoEntity = objInformeData.ListarDetalladoPaginado(pLista); } catch (Exception ex) { throw ex; } return lstGastoEntity; }
public List<InformeEntity> ListarSeguimientoPresupuesto(Parametro pLista) { List<InformeEntity> lstPlantillaDetaEntity = new List<InformeEntity>(); try { objInformeData = new InformeData(); lstPlantillaDetaEntity = objInformeData.ListarPaginado(pLista); } catch (Exception ex) { throw ex; } return lstPlantillaDetaEntity; }