Exemplo n.º 1
0
 public SearchProductController(ICategoryService categoryService,
                                ICategoryProductAttributeService categoryProductAttributeService,
                                ICurrencyService currencyService,
                                IWorkContext workContext, ICustomerInformationAttributeService customerInformationAttributeService,
                                ICityService cityService,
                                IProductService productService,
                                ICurrencyService currenncyService,
                                IPictureService pictureService,
                                IUrlRecordService urlRecordService,
                                ICustomerActivityService customerActivityService,
                                ISearchLogService searchLogService,
                                ILocalizationService localizationService)
 {
     this._categoryService = categoryService;
     this._categoryProductAttributeService = categoryProductAttributeService;
     this._currencyService = currencyService;
     this._workContext     = workContext;
     this._customerInformationAttributeService = customerInformationAttributeService;
     this._cityService             = cityService;
     this._productService          = productService;
     this._currencyService         = currencyService;
     this._pictureService          = pictureService;
     this._urlRecordService        = urlRecordService;
     this._customerActivityService = customerActivityService;
     this._searchLogService        = searchLogService;
     this._localizationService     = localizationService;
 }
Exemplo n.º 2
0
 public SearchController(
     ISearchLogService searchLogService,
     ISearchService searchService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _searchLogService = searchLogService;
     _searchService    = searchService;
     _mapper           = mapper;
     _appSettings      = appSettings.Value;
 }
 public SearchLogServiceTests()
 {
     _searchLogService = new SearchLogService(context: Context, mapper: Mapper);
 }
Exemplo n.º 4
0
 public QueryLogController(ISearchLogService loggingService)
 {
     _loggingService = loggingService;
 }
Exemplo n.º 5
0
 public SearchQueryLogConsumer(IMapper mapper, ISearchLogService searchLogService)
 {
     _mapper           = mapper;
     _searchLogService = searchLogService;
 }