public IActionResult OnGet(int id) { Materia = _materiaRepository.GetByID(id); if (Materia == null) { return(NotFound()); } return(Page()); }