public StudentListViewModel(IDialogService dialogService, IStudentService studentService, IStudentEvaluationService studentEvaluationService) : base(dialogService)
 {
     StudentService             = studentService;
     StudentDetailsViewModel    = new StudentDetailsViewModel(studentService, dialogService);
     StudentEvaluationViewModel = new StudentEvaluationViewModel(studentEvaluationService, dialogService);
     SArgs = new StudentDetailsArgs();
     EArgs = new StudentEvaluationArgs();
 }
Beispiel #2
0
 public StudentEvaluationViewModel(IStudentEvaluationService studentEvaluationService, IDialogService dialogService) : base(dialogService)
 {
     StudentEvaluationService = studentEvaluationService;
 }