Esempio n. 1
0
 public GroupsController(IGroupService groupService, IUserService userService,
                         ISectionService sectionService, IGroupSectionService groupSectionService)
 {
     this.groupService        = groupService;
     this.userService         = userService;
     this.sectionService      = sectionService;
     this.groupSectionService = groupSectionService;
 }
Esempio n. 2
0
 public CourseController(IGroupSectionService groupSectionService, IUserService userService,
                         ISectionService sectionService, ICourseService courseService)
 {
     this.groupSectionService = groupSectionService;
     this.userService         = userService;
     this.sectionService      = sectionService;
     this.courseService       = courseService;
 }
Esempio n. 3
0
 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;
 }
Esempio n. 4
0
 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;
 }