Beispiel #1
0
        public ActionResult EditarProfesor(int id_profe)
        {
            PROFESOR profe = new PROFESOR();

            ProfesorTi.EditarDatosProfesor(id_profe, profe);
            return(View());
        }
Beispiel #2
0
 // GET: Profesor/Profesor
 public ActionResult Index()
 {
     ViewBag.ListadoProfesores = ProfesorTi.ListaProfesor();
     return(View());
 }