public InitializeWithPrimaryDataController(IRegionsService regionsService,
                                            ISchoolsService schoolsService, IClassesService classesService,
                                            ISubjectsService subjectsService, IStudentsService studentsService,
                                            IStudentsSubjectsService studentsSubjectsService, IGradesService gradesService)
 {
     this.regionsService          = regionsService;
     this.schoolsService          = schoolsService;
     this.classesService          = classesService;
     this.subjectsService         = subjectsService;
     this.studentsService         = studentsService;
     this.studentsSubjectsService = studentsSubjectsService;
     this.gradesService           = gradesService;
 }
Esempio n. 2
0
 public StudentsSubjectsController(IStudentsSubjectsService studentsSubjectsService)
 {
     this.studentsSubjectsService = studentsSubjectsService;
 }