Пример #1
0
 public InstructorsController(IInstructorAppService instructorAppService)
 {
     this.instructorAppService = instructorAppService;
 }
Пример #2
0
 public DepartmentInstructorController(IDepartmentInstructorAppService departmentInstructorAppService, IDepartmentAppService departmentAppService, IInstructorAppService instructorAppService)
 {
     _departmentInstructorAppService = departmentInstructorAppService;
     _departmentAppService           = departmentAppService;
     _instructorAppService           = instructorAppService;
 }
Пример #3
0
 public InstructorCourseController(IInstructorCourseAppService instructorCourseAppService, IInstructorAppService instructorAppService, ICourseAppService courseAppService)
 {
     _instructorCourseAppService = instructorCourseAppService;
     _instructorAppService       = instructorAppService;
     _courseAppService           = courseAppService;
 }
Пример #4
0
 public OfficeInstructorController(IOfficeInstructorAppService officeInstructorAppService, IOfficeAppService officeAppService, IInstructorAppService instructorAppService)
 {
     _officeInstructorAppService = officeInstructorAppService;
     _officeAppService           = officeAppService;
     _instructorAppService       = instructorAppService;
 }
Пример #5
0
 public InstructorController(IInstructorAppService instructorAppService)
 {
     _instructorAppService = instructorAppService;
 }
Пример #6
0
 public CoursesController(ICourseAppService courseAppService, ICourseTypeAppService courseTypeAppService, IInstructorAppService instructorAppService)
 {
     this.courseAppService     = courseAppService;
     this.courseTypeAppService = courseTypeAppService;
     this.instructorAppService = instructorAppService;
 }