コード例 #1
0
ファイル: PlantillaLogic.cs プロジェクト: ocarril/UPC_TP3_ByS
 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;
 }
コード例 #2
0
ファイル: PlantillaLogic.cs プロジェクト: ocarril/UPC_TP3_ByS
 public List<PartidaEntity> ListarPartida()
 {
     List<PartidaEntity> lstPartidaEntity = new List<PartidaEntity>();
     try
     {
         objPartidaData = new PartidaData();
         lstPartidaEntity = objPartidaData.Listar();
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return lstPartidaEntity;
 }