Example #1
0
 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;
 }