public IActionResult OnGet(int id)
 {
     Docente = _docenteRepository.GetbyId(id);
     if (Docente == null)
     {
         return(NotFound());
     }
     return(Page());
 }