public IActionResult Asignar(string estudianteId, string moduloId) { var desglose = new NotaEstudiante() { Desglose = notasRepository.DesgloseNotasPorModulo(moduloId, estudianteId), Estudiante = estudiantesRepository.ObtenerEstudiante(estudianteId) }; return(View(desglose)); }
public ActionResult Editar(string id) { var estudiante = repository.ObtenerEstudiante(id); return(View(estudiante)); }