public up_IFCDC_Obtener_PeriodoActualResult obtenerPeriodo() { PeriodoDALC objPeriodoDALC; try { objPeriodoDALC = new PeriodoDALC(); return objPeriodoDALC.obtenerPeriodoActual(); } catch (Exception ex) { throw ex; } }
public List<up_IFCDC_Listar_PeriodosResult> listarPeriodos() { PeriodoDALC objPeriodoDALC; try { objPeriodoDALC = new PeriodoDALC(); return objPeriodoDALC.listarPeriodos(); } catch (Exception ex) { throw ex; } }