public List<PresupuestoEntity> ListarPresupuesto(int? pnumAnio) { List<PresupuestoEntity> lstPresupuestoEntity = new List<PresupuestoEntity>(); try { objPartidaData = new PartidaData(); objPresupuestoData = new PresupuestoData(); lstPresupuestoEntity = objPresupuestoData.Listar(pnumAnio); } catch (Exception ex) { throw ex; } return lstPresupuestoEntity; }
public List<PartidaEntity> ListarPartida() { List<PartidaEntity> lstPartidaEntity = new List<PartidaEntity>(); try { objPartidaData = new PartidaData(); lstPartidaEntity = objPartidaData.Listar(); } catch (Exception ex) { throw ex; } return lstPartidaEntity; }