public GroupsController(IGroupService groupService, IUserService userService, ISectionService sectionService, IGroupSectionService groupSectionService) { this.groupService = groupService; this.userService = userService; this.sectionService = sectionService; this.groupSectionService = groupSectionService; }
public CourseController(IGroupSectionService groupSectionService, IUserService userService, ISectionService sectionService, ICourseService courseService) { this.groupSectionService = groupSectionService; this.userService = userService; this.sectionService = sectionService; this.courseService = courseService; }
public TestController(ITestService testService, IQuestionService questionService, IGradeService gradeService, IUserService userService, IGroupSectionService groupSectionService, ISectionService sectionService, ITypeService typeService, ITaskService taskService, IUserTaskService userTaskService) { this.testService = testService; this.questionService = questionService; this.gradeService = gradeService; this.userService = userService; this.groupSectionService = groupSectionService; this.sectionService = sectionService; this.typeService = typeService; this.taskService = taskService; this.userTaskService = userTaskService; }
public ReportsController(IReportService reportService, IUserService userService, ITemplateService templateService, IGradeService gradeService, IActivityService activityService, IGroupService groupService, IReportQAService reportQAService, ITestService testService, ISectionService sectionService, IGroupSectionService groupSectionService, ITaskService taskService, IUserTaskService userTaskService) { this.reportService = reportService; this.userService = userService; this.templateService = templateService; this.gradeService = gradeService; this.activityService = activityService; this.taskService = taskService; this.groupService = groupService; this.reportQAService = reportQAService; this.testService = testService; this.sectionService = sectionService; this.groupSectionService = groupSectionService; this.userTaskService = userTaskService; }