Пример #1
0
        public Resultado datosParaReporte(string escuela, string tag)
        {
            Resultado resultado = new Resultado();

            try
            {
                resultado = new SesionDatos().datosParaReporte(escuela, tag);

                return(resultado);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Пример #2
0
        public Resultado Reporte(string escuela, string dificultad, string horario, string instructor)
        {
            Resultado resultado = new Resultado();

            try
            {
                resultado = new SesionDatos().Reporte(escuela, dificultad, horario, instructor);

                return(resultado);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Пример #3
0
        public Resultado Acciones(Sesion sesion)
        {
            Resultado resultado = new Resultado();

            try
            {
                resultado = new SesionDatos().Acciones(sesion);

                return(resultado);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }