Exemplo n.º 1
0
 public TopicsController(
     ITopicApiService topicApiService,
     IJsonFieldsSerializer jsonFieldsSerializer,
     ITopicService categoryService,
     IUrlRecordService urlRecordService,
     ICustomerActivityService customerActivityService,
     ILocalizationService localizationService,
     IPictureService pictureService,
     IStoreMappingService storeMappingService,
     IStoreService storeService,
     IDiscountService discountService,
     IAclService aclService,
     IStaticCacheManager cacheManager,
     ICustomerService customerService,
     IDTOHelper dtoHelper,
     IStoreContext storeContext,
     StoreInformationSettings storeInformationSettings) : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService,
                                                               customerActivityService, localizationService, pictureService)
 {
     _topicApiService          = topicApiService;
     _topicService             = categoryService;
     _urlRecordService         = urlRecordService;
     _dtoHelper                = dtoHelper;
     _storeContext             = storeContext;
     _cacheManager             = cacheManager;
     _storeInformationSettings = storeInformationSettings;
     _pictureService           = pictureService;
 }
 public TopicsController(
     ITopicApiService topicApiService,
     //IProvinceApiService provinceApiService,
     IJsonFieldsSerializer jsonFieldsSerializer,
     ITopicService categoryService,
     IUrlRecordService urlRecordService,
     ICustomerActivityService customerActivityService,
     ILocalizationService localizationService,
     IPictureService pictureService,
     IStoreMappingService storeMappingService,
     IStoreService storeService,
     IDiscountService discountService,
     IAclService aclService,
     IStaticCacheManager cacheManager,
     ICustomerService customerService,
     IDTOHelper dtoHelper,
     IGenericAttributeService genericAttributeService,
     IStoreContext storeContext,
     IWorkContext workContext,
     IStateProvinceService stateProvinceService,
     ICountryService countryService,
     IRepository <StateProvince> stateProvinceRepository,
     MediaSettings mediaSettings,
     StoreInformationSettings storeInformationSettings) : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService,
                                                               customerActivityService, localizationService, pictureService)
 {
     _topicApiService = topicApiService;
     //_provinceApiService = provinceApiService;
     _topicService             = categoryService;
     _urlRecordService         = urlRecordService;
     _dtoHelper                = dtoHelper;
     _storeContext             = storeContext;
     _cacheManager             = cacheManager;
     _storeInformationSettings = storeInformationSettings;
     _pictureService           = pictureService;
     _genericAttributeService  = genericAttributeService;
     _workContext              = workContext;
     _mediaSettings            = mediaSettings;
     _stateProvinceService     = stateProvinceService;
     _stateProvinceRepository  = stateProvinceRepository;
     _countryService           = countryService;
 }
Exemplo n.º 3
0
 public LastFiveTopic(ITopicApiService topicService)
 {
     _topicService = topicService;
 }
Exemplo n.º 4
0
 public TopicController(ITopicApiService topicApiService)
 {
     _topicApiService = topicApiService;
 }