Example #1
0
 public StudyMaterialApiController(IStudyMaterialManagementService studyMaterialManagementService,
                                   IStudyMaterialService studyMaterialService, IMapper mapper)
 {
     _studyMaterialManagementService = studyMaterialManagementService;
     _studyMaterialService           = studyMaterialService;
     _mapper = mapper;
 }
Example #2
0
 public StudyMaterialController(IStudyMaterialManagementService studyMaterialManagementService, IStringLocalizer <SharedResource> stringLocalizer,
                                IStudyMaterialService studyMaterialService, ICategoryService categoryService, IMapper mapper)
 {
     _studyMaterialManagementService = studyMaterialManagementService;
     _studyMaterialService           = studyMaterialService;
     _categoryService = categoryService;
     _mapper          = mapper;
     _stringLocalizer = stringLocalizer;
 }