Exemple #1
0
        public MasterGradebookViewModel(ITestResultService testResultService)
        {
            _resultService = testResultService;

            var gradebooks = _resultService.GetMasterGradebook().ToList();

            StudentsGradebooks = new ObservableCollection <MasterGradebookTestResultModel>(gradebooks);
        }