public VendorEnhancedController(IVendorReviewService vendorReviewService,
                                 IVendorService vendorService,
                                 ILocalizationService localizationService,
                                 IWorkContext workContext,
                                 IUrlRecordService urlRecordService,
                                 CatalogSettings catalogSettings,
                                 CaptchaSettings captchaSettings,
                                 IStoreContext storeContext,
                                 VendorEnhancedSettings vendorEnhancedSettings,
                                 ISettingService settingService,
                                 IPermissionService permissionService,
                                 IPictureService pictureService,
                                 IRepository <VendorPictureRecord> vendorPictureRecordRepository,
                                 IEventPublisher eventPublisher,
                                 IRepository <Vendor> vendorRepository)
 {
     this._vendorReviewService           = vendorReviewService;
     this._vendorService                 = vendorService;
     this._localizationService           = localizationService;
     this._workContext                   = workContext;
     this._urlRecordService              = urlRecordService;
     this._catalogSettings               = catalogSettings;
     this._captchaSettings               = captchaSettings;
     this._storeContext                  = storeContext;
     this._vendorEnhancedSettings        = vendorEnhancedSettings;
     this._settingService                = settingService;
     this._permissionService             = permissionService;
     this._pictureService                = pictureService;
     this._vendorPictureRecordRepository = vendorPictureRecordRepository;
     this._eventPublisher                = eventPublisher;
     this._vendorRepository              = vendorRepository;
 }
Ejemplo n.º 2
0
 public ManageVendorEnhancedAdminController(IVendorReviewService vendorReviewService,
                                            ILocalizationService localizationService,
                                            IWorkContext workContext)
 {
     this._vendorReviewService = vendorReviewService;
     this._localizationService = localizationService;
     this._workContext         = workContext;
 }
 public VendorReviewOverviewViewComponent(IStoreContext storeContext,
                                          ISettingService settingService,
                                          IWebHelper webHelper,
                                          VendorEnhancedSettings vendorEnhancedSettings,
                                          IVendorReviewService vendorReviewService)
 {
     this._storeContext           = storeContext;
     this._settingService         = settingService;
     this._webHelper              = webHelper;
     this._vendorEnhancedSettings = vendorEnhancedSettings;
     this._vendorReviewService    = vendorReviewService;
 }
Ejemplo n.º 4
0
 public NewsController(
     IMapper mapper,
     INewsService newsService,
     IVendorReviewService vendorReviewService,
     IHttpContextAccessor httpContextAccessor,
     IOptions <AppSettings> appSettings
     )
 {
     _mapper              = mapper;
     _newsService         = newsService;
     _httpContextAccessor = httpContextAccessor;
     _vendorReviewService = vendorReviewService;
 }