Пример #1
0
 public StudyMaterialApiController(IStudyMaterialManagementService studyMaterialManagementService,
                                   IStudyMaterialService studyMaterialService, IMapper mapper)
 {
     _studyMaterialManagementService = studyMaterialManagementService;
     _studyMaterialService           = studyMaterialService;
     _mapper = mapper;
 }
 public CourseCategoryManagementService(ICategoryService categoryService, ICourseService courseService,
                                        IStudyMaterialService studyMaterialService, IErrorHandler errorHandler, OrhedgeContext orhedgeContext)
 {
     _courseService        = courseService;
     _categoryService      = categoryService;
     _studyMaterialService = studyMaterialService;
     _errorHandler         = errorHandler;
     _orhedgeContext       = orhedgeContext;
 }
Пример #3
0
 public StudyMaterialController(IStudyMaterialManagementService studyMaterialManagementService, IStringLocalizer <SharedResource> stringLocalizer,
                                IStudyMaterialService studyMaterialService, ICategoryService categoryService, IMapper mapper)
 {
     _studyMaterialManagementService = studyMaterialManagementService;
     _studyMaterialService           = studyMaterialService;
     _categoryService = categoryService;
     _mapper          = mapper;
     _stringLocalizer = stringLocalizer;
 }
Пример #4
0
 public StudyMaterialMenagementService(IErrorHandler errorHandler, ICourseService courseService, IStudyMaterialService studyMaterialService, IDocumentService documentService,
                                       ICategoryService categoryService, IStudentService studentService, OrhedgeContext context)
 {
     _errorHandler         = errorHandler;
     _courseService        = courseService;
     _studyMaterialService = studyMaterialService;
     _documentService      = documentService;
     _categoryService      = categoryService;
     _studentService       = studentService;
     _context = context;
 }
 public StudentMaterialsController(IStudentMaterialService studentMaterialService, IMapper mapper, IStudyMaterialService studyMaterialService)
 {
     _studentMaterialService = studentMaterialService;
     _mapper = mapper;
     _studyMaterialService = studyMaterialService;
 }
Пример #6
0
 public CategoryService(IServicesExecutor <CategoryDTO, Category> servicesExecutor, IStudyMaterialService studyMaterialService, IErrorHandler errorHandler, OrhedgeContext context)
     : base(servicesExecutor) => (_context, _studyMaterialService, _errorHandler) = (context, studyMaterialService, errorHandler);
 public SessionMaterialsController(ISessionMaterialService sessionMaterialService, IMapper mapper, IStudyMaterialService studyMaterialService, ISessionService sessionService)
 {
     _sessionMaterialService = sessionMaterialService;
     _mapper         = mapper;
     _sessionService = sessionService;
 }
 public TopicMaterialsController(IStudyMaterialService studyMaterialService, IMapper mapper)
 {
     _studyMaterialService = studyMaterialService;
     _mapper = mapper;
 }