public ExtendedVendorController(IExtendedVendorService extendedVendorService,
     IPermissionService permissionService,
     IPictureService pictureService,
     IVendorService vendorService,
     ICountryService countryService,
     IStateProvinceService stateProvinceService,
     ICacheManager cacheManager,
     ILocalizationService localizationService,
     IWorkContext workContext,
     IOrderService orderService,
     IProductService productService,
     CatalogSettings catalogSettings,
     IWorkflowMessageService workflowMessageService,
     ICustomerActivityService customerActivityService,
     LocalizationSettings localizationSettings,
     ISettingService settingService,
     IStoreService storeService,
     ICustomerService customerService)
 {
     this._extendedVendorService = extendedVendorService;
     this._permissionService = permissionService;
     this._pictureService = pictureService;
     this._vendorService = vendorService;
     this._countryService = countryService;
     this._stateProvinceService = stateProvinceService;
     this._cacheManager = cacheManager;
     this._localizationService = localizationService;
     this._workContext = workContext;
     this._orderService = orderService;
     this._productService = productService;
     this._catalogSettings = catalogSettings;
     this._workflowMessageService = workflowMessageService;
     this._customerActivityService = customerActivityService;
     this._localizationSettings = localizationSettings;
     this._settingService = settingService;
     this._storeService = storeService;
     this._customerService = customerService;
 }
 public ExtendedVendorController(IExtendedVendorService extendedVendorService,
                                 IPermissionService permissionService,
                                 IPictureService pictureService,
                                 IVendorService vendorService,
                                 ICountryService countryService,
                                 IStateProvinceService stateProvinceService,
                                 ICacheManager cacheManager,
                                 ILocalizationService localizationService,
                                 IWorkContext workContext,
                                 IOrderService orderService,
                                 IProductService productService,
                                 CatalogSettings catalogSettings,
                                 IWorkflowMessageService workflowMessageService,
                                 ICustomerActivityService customerActivityService,
                                 LocalizationSettings localizationSettings,
                                 ISettingService settingService,
                                 IStoreService storeService,
                                 ICustomerService customerService)
 {
     this._extendedVendorService   = extendedVendorService;
     this._permissionService       = permissionService;
     this._pictureService          = pictureService;
     this._vendorService           = vendorService;
     this._countryService          = countryService;
     this._stateProvinceService    = stateProvinceService;
     this._cacheManager            = cacheManager;
     this._localizationService     = localizationService;
     this._workContext             = workContext;
     this._orderService            = orderService;
     this._productService          = productService;
     this._catalogSettings         = catalogSettings;
     this._workflowMessageService  = workflowMessageService;
     this._customerActivityService = customerActivityService;
     this._localizationSettings    = localizationSettings;
     this._settingService          = settingService;
     this._storeService            = storeService;
     this._customerService         = customerService;
 }
 public OrderPaidEventConsumer(IExtendedVendorService extendedVendorService, TaxSettings taxSettings, ExtendedVendorSettings extendedVendorSettings)
 {
     this._extendedVendorService  = extendedVendorService;
     this._taxSettings            = taxSettings;
     this._extendedVendorSettings = extendedVendorSettings;
 }
 public OrderCancelledEventConsumer(IExtendedVendorService extendedVendorService, TaxSettings taxSettings)
 {
     this._extendedVendorService = extendedVendorService;
     this._taxSettings           = taxSettings;
 }