예제 #1
0
        public IActionResult Asignar(string estudianteId, string moduloId)
        {
            var desglose = new NotaEstudiante()
            {
                Desglose   = notasRepository.DesgloseNotasPorModulo(moduloId, estudianteId),
                Estudiante = estudiantesRepository.ObtenerEstudiante(estudianteId)
            };

            return(View(desglose));
        }
예제 #2
0
        public ActionResult Editar(string id)
        {
            var estudiante = repository.ObtenerEstudiante(id);

            return(View(estudiante));
        }