コード例 #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;
 }
コード例 #2
0
 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;
 }
コード例 #3
0
 public LastFiveTopic(ITopicApiService topicService)
 {
     _topicService = topicService;
 }
コード例 #4
0
 public TopicController(ITopicApiService topicApiService)
 {
     _topicApiService = topicApiService;
 }