public void RechazarPostulacion()
        {
            EncargadoCEMNegocio cem = new EncargadoCEMNegocio();
            var resultado           = cem.SeleccionarPostulante(2, false);

            Assert.IsTrue(resultado);
        }
        public void AprobarPostulacion()
        {
            EncargadoCEMNegocio cem = new EncargadoCEMNegocio();
            var resultado           = cem.SeleccionarPostulante(1, true);

            Assert.IsTrue(resultado);
        }
Beispiel #3
0
        public void BuscarNotas()
        {
            EncargadoCEMNegocio cem = new EncargadoCEMNegocio();
            var notas = cem.BuscarNotas(1);

            Assert.IsNotNull(notas);
        }
Beispiel #4
0
        public void ProgramasEnCursoFinalizados()
        {
            EncargadoCEMNegocio cem = new EncargadoCEMNegocio();
            var programas           = cem.ProgramasEnCursoFinalizados();

            Assert.IsNotNull(programas);
        }
        public void ObtenerEstadoAlumno()
        {
            EncargadoCEMNegocio cem = new EncargadoCEMNegocio();
            var estadoAlumno        = cem.obtenerEstadoAlumno(1);

            Console.WriteLine(estadoAlumno.estadoAlumno);
            Assert.IsNotNull(estadoAlumno);
        }