Exemple #1
0
 public HomeController(
     IStudentService studentService,
     ITeachingGroupService teachingGroupService)
 {
     _studentService       = studentService;
     _teachingGroupService = teachingGroupService;
 }
Exemple #2
0
 public StudentController(
     IStudentService ss,
     ITeachingGroupService tgs,
     IStudentPageHelperService sphs)
 {
     _studentService           = ss;
     _teachingGroupService     = tgs;
     _studentPageHelperService = sphs;
 }
 public StudentPageHelperService(ITeachingGroupService tgs)
 {
     _teachingGroupService = tgs;
 }