Exemplo n.º 1
0
 public PeriodoEntity ObtenerPeriodoActual()
 {
     PeriodoDataAccess oPeriodoDALC = new PeriodoDataAccess();
     try
     {
         return oPeriodoDALC.ObtenerPeriodoActual();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 public List<PeriodoEntity> ListarPeriodoPorCarreraId(int CarreraId)
 {
     PeriodoDataAccess oPeriodoDALC = new PeriodoDataAccess();
     try
     {
         return oPeriodoDALC.ListarPeriodoPorCarreraId(CarreraId);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 3
0
        public List<uspPeriodo_ListarXEstadoXEsActualResult> periodoListarXEstadoXEsActual(int? estado, int? esActual)
        {
            PeriodoDataAccess objDALC;

            try
            {
                objDALC = new PeriodoDataAccess();
                return objDALC.periodoListarXEstadoXEsActual(estado, esActual);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Exemplo n.º 4
0
        public up_Obtener_PeriodoActualResult obtenerPeriodo()
        {
            PeriodoDataAccess objPeriodoDALC;

            try
            {
                objPeriodoDALC = new PeriodoDataAccess();
                return objPeriodoDALC.obtenerPeriodoActual();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Exemplo n.º 5
0
        public List<up_Listar_PeriodosResult> listarPeriodos()
        {
            PeriodoDataAccess objPeriodoDALC;

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