예제 #1
0
파일: PeriodoBC.cs 프로젝트: renzomh/IFC-DC
        public up_IFCDC_Obtener_PeriodoActualResult obtenerPeriodo()
        {
            PeriodoDALC objPeriodoDALC;

            try
            {
                objPeriodoDALC = new PeriodoDALC();
                return objPeriodoDALC.obtenerPeriodoActual();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
예제 #2
0
파일: PeriodoBC.cs 프로젝트: renzomh/IFC-DC
        public List<up_IFCDC_Listar_PeriodosResult> listarPeriodos()
        {
            PeriodoDALC objPeriodoDALC;

            try
            {
                objPeriodoDALC = new PeriodoDALC();
                return objPeriodoDALC.listarPeriodos();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }