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 EventConsumer(IVendorService vendorService,
                      IPluginFinder pluginFinder,
                      ILocalizationService localizationService,
                      VendorEnhancedSettings vendorEnhancedSettings)
 {
     this._vendorService          = vendorService;
     this._pluginFinder           = pluginFinder;
     this._localizationService    = localizationService;
     this._vendorEnhancedSettings = vendorEnhancedSettings;
 }
 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;
 }
 public VendorDetailsEnhancedViewComponent(IStoreContext storeContext,
                                           ISettingService settingService,
                                           ILocalizationService localizationService,
                                           IWebHelper webHelper,
                                           VendorEnhancedSettings vendorEnhancedSettings,
                                           IRepository <Vendor> vendorRepository,
                                           IVendorService vendorService,
                                           MediaSettings mediaSettings,
                                           IPictureService pictureService,
                                           IRepository <VendorPictureRecord> vendorPictureRecordRepository)
 {
     this._storeContext                  = storeContext;
     this._settingService                = settingService;
     this._localizationService           = localizationService;
     this._webHelper                     = webHelper;
     this._vendorEnhancedSettings        = vendorEnhancedSettings;
     this._vendorRepository              = vendorRepository;
     this._vendorService                 = vendorService;
     this._mediaSettings                 = mediaSettings;
     this._pictureService                = pictureService;
     this._vendorPictureRecordRepository = vendorPictureRecordRepository;
 }