public ActionResult Performance()
        {
            var model = new PerformanceViewModel {
                Students = _workResultService.GetAllStudents()
            };

            return(View(model));
        }
Beispiel #2
0
        public ActionResult Search()
        {
            var viewModel = new SearchViewModel();

            viewModel.Students           = _workResultService.GetAllStudents();
            viewModel.Subjects           = _workResultService.GetAllSubjects();
            viewModel.LearningObjectives = _workResultService.GetAllLearningObjectives();
            viewModel.Domains            = _workResultService.GetAllDomains();
            return(View(viewModel));
        }