Пример #1
0
 public GroupController(IGroupService groupService, IStudentsInGroupsService studentsInGroupsService)
 {
     _groupService            = groupService;
     _studentsInGroupsService = studentsInGroupsService;
 }
Пример #2
0
 public StudentController(IStudentService studentService, IStudentsInGroupsService studentsInGroupsService)
 {
     _studentService          = studentService;
     _studentsInGroupsService = studentsInGroupsService;
 }