コード例 #1
0
 public StudentsControllerService(IStudentDTOService studentService, ApplicationUserManager userManager, IViewFactory viewFactory, IDTOFactory dtoFactory)
 {
     this.studentService = studentService;
     this.userManager    = userManager;
     this.viewFactory    = viewFactory;
     this.dtoFactory     = dtoFactory;
 }
コード例 #2
0
 public WorkDaysControllerService(IWorkDayDTOService workDayService,
                                  IStudentDTOService studentService,
                                  IAttendanceDTOService attendanceService,
                                  IObjectToObjectMapper mapper,
                                  IViewFactory viewFactory,
                                  IDTOFactory dtoFactory)
 {
     this.attendanceService = attendanceService;
     this.studentService    = studentService;
     this.workDayService    = workDayService;
     this.mapper            = mapper;
     this.viewModelFactory  = viewFactory;
     this.dtoFactory        = dtoFactory;
 }
コード例 #3
0
 public AssignmentsControllerService(IAssignmentDTOService service,
                                     IMentorDTOService mentorService,
                                     IStudentDTOService studentService,
                                     IAssignmentFileDTOService fileService,
                                     ISubmissionDTOService submissionService,
                                     IObjectToObjectMapper mapper,
                                     IViewFactory viewFactory,
                                     IDTOFactory dtoFactory)
 {
     this.assignmentService = service;
     this.mentorService     = mentorService;
     this.studentService    = studentService;
     this.fileService       = fileService;
     this.submissionService = submissionService;
     this.mapper            = mapper;
     this.viewFactory       = viewFactory;
     this.dtoFactory        = dtoFactory;
 }