Exemplo n.º 1
0
        public Entidades.Cursos RecuperarDisponibles(int legajo)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                return oDatos.RecuperarDisponibles(legajo);
            }

            finally
            {
                oDatos = null;
            }
        }
Exemplo n.º 2
0
        public void Modificar(Entidades.Curso item)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                oDatos.Modificar(item);
            }

            finally
            {
                oDatos = null;
            }
        }
Exemplo n.º 3
0
        public bool ExisteCurso(int id)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                return oDatos.ExisteCurso(id);
            }

            finally
            {
                oDatos = null;
            }
        }
Exemplo n.º 4
0
        public void Borrar(int IdCurso)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                oDatos.Borrar(IdCurso);
            }

            finally
            {
                oDatos = null;
            }
        }
Exemplo n.º 5
0
        public int Agregar(Entidades.Curso item)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                return oDatos.Agregar(item);
            }

            finally
            {
                oDatos = null;
            }
        }
Exemplo n.º 6
0
        public Entidades.Cursos RecuperarInscripciones(int Legajo)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                return oDatos.RecuperarInscripciones(Legajo);
            }

            finally
            {
                oDatos = null;
            }
        }
Exemplo n.º 7
0
        public Entidades.Cursos RecuperarUno(int id)
        {
            Datos.Cursos oDatos;

            try
            {
                oDatos = new Datos.Cursos();
                return oDatos.RecuperarUno(id);
            }

            finally
            {
                oDatos = null;
            }
        }