public ActionResult CrearProfesor()
        {
            CrearProfesor modeloCrearProfesor = new CrearProfesor();

            Tipo();
            return(View(modeloCrearProfesor));
        }
 public ActionResult CrearProfesor(CrearProfesor modeloProfesor)
 {
     Tipo();
     return(View("Index"));
 }