Ejemplo n.º 1
0
 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;
 }