Пример #1
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;
 }
Пример #2
0
 public AttendancesControllerService(IAttendanceDTOService attendanceService, IViewFactory viewFactory, IDTOFactory dtoFactory)
 {
     this.viewFactory       = viewFactory;
     this.attendanceService = attendanceService;
     this.dtoFactory        = dtoFactory;
 }