Пример #1
0
        public bool AlumnoInscriptoAMateria(int legajo, int idMateria)
        {
            Datos.Inscripciones oDatos;

            try
            {
                oDatos = new Datos.Inscripciones();
                return oDatos.AlumnoInscriptoAMateria(legajo, idMateria);
            }

            finally
            {
                oDatos = null;
            }
        }
Пример #2
0
        public void Borrar(int legajo, int idCurso)
        {
            Datos.Inscripciones oDatos;

            try
            {
                oDatos = new Datos.Inscripciones();
                oDatos.Borrar(legajo, idCurso);
            }

            finally
            {
                oDatos = null;
            }
        }
Пример #3
0
        public int Agregar(int legajo, int idCurso)
        {
            Datos.Inscripciones oDatos;

            try
            {
                oDatos = new Datos.Inscripciones();
                return oDatos.Agregar(legajo, idCurso);
            }

            finally
            {
                oDatos = null;
            }
        }