Пример #1
0
 public VendorController(CaptchaSettings captchaSettings,
                         ICustomerService customerService,
                         IDownloadService downloadService,
                         IGenericAttributeService genericAttributeService,
                         ILocalizationService localizationService,
                         IPictureService pictureService,
                         IUrlRecordService urlRecordService,
                         IVendorAttributeParser vendorAttributeParser,
                         IVendorAttributeService vendorAttributeService,
                         IVendorModelFactory vendorModelFactory,
                         IVendorService vendorService,
                         IWorkContext workContext,
                         IWorkflowMessageService workflowMessageService,
                         LocalizationSettings localizationSettings,
                         VendorSettings vendorSettings)
 {
     this._captchaSettings         = captchaSettings;
     this._customerService         = customerService;
     this._downloadService         = downloadService;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._pictureService          = pictureService;
     this._urlRecordService        = urlRecordService;
     this._vendorAttributeParser   = vendorAttributeParser;
     this._vendorAttributeService  = vendorAttributeService;
     this._vendorModelFactory      = vendorModelFactory;
     this._vendorService           = vendorService;
     this._workContext             = workContext;
     this._workflowMessageService  = workflowMessageService;
     this._localizationSettings    = localizationSettings;
     this._vendorSettings          = vendorSettings;
 }
Пример #2
0
 public VendorController(IAddressService addressService,
                         ICustomerActivityService customerActivityService,
                         ICustomerService customerService,
                         IGenericAttributeService genericAttributeService,
                         ILocalizationService localizationService,
                         ILocalizedEntityService localizedEntityService,
                         INotificationService notificationService,
                         IPermissionService permissionService,
                         IPictureService pictureService,
                         IUrlRecordService urlRecordService,
                         IVendorAttributeParser vendorAttributeParser,
                         IVendorAttributeService vendorAttributeService,
                         IVendorModelFactory vendorModelFactory,
                         IVendorService vendorService)
 {
     _addressService          = addressService;
     _customerActivityService = customerActivityService;
     _customerService         = customerService;
     _genericAttributeService = genericAttributeService;
     _localizationService     = localizationService;
     _localizedEntityService  = localizedEntityService;
     _notificationService     = notificationService;
     _permissionService       = permissionService;
     _pictureService          = pictureService;
     _urlRecordService        = urlRecordService;
     _vendorAttributeParser   = vendorAttributeParser;
     _vendorAttributeService  = vendorAttributeService;
     _vendorModelFactory      = vendorModelFactory;
     _vendorService           = vendorService;
 }
Пример #3
0
        public VendorController(IVendorModelFactory vendorModelFactory,
                                IWorkContext workContext,
                                ILocalizationService localizationService,
                                ICustomerService customerService,
                                IWorkflowMessageService workflowMessageService,
                                IVendorService vendorService,
                                IUrlRecordService urlRecordService,
                                IPictureService pictureService,
                                LocalizationSettings localizationSettings,
                                VendorSettings vendorSettings,
                                CaptchaSettings captchaSettings)
        {
            this._vendorModelFactory     = vendorModelFactory;
            this._workContext            = workContext;
            this._localizationService    = localizationService;
            this._customerService        = customerService;
            this._workflowMessageService = workflowMessageService;
            this._vendorService          = vendorService;
            this._urlRecordService       = urlRecordService;
            this._pictureService         = pictureService;

            this._localizationSettings = localizationSettings;
            this._vendorSettings       = vendorSettings;
            this._captchaSettings      = captchaSettings;
        }
        public VendorController(IVendorModelFactory vendorModelFactory, IWorkContext workContext, ILocalizationService localizationService,
                                ICustomerService customerService, IWorkflowMessageService workflowMessageService, IVendorService vendorService,
                                IUrlRecordService urlRecordService, IPictureService pictureService,
                                LocalizationSettings localizationSettings, VendorSettings vendorSettings, CaptchaSettings captchaSettings,
                                ICountryService countryService, ICategoryService categoryService, ICatalogModelFactory catalogModelFactory)
            : base(vendorModelFactory, workContext, localizationService, customerService, workflowMessageService, vendorService,
                   urlRecordService, pictureService,
                   localizationSettings, vendorSettings, captchaSettings)
        {
            _vendorModelFactory     = vendorModelFactory;
            _workContext            = workContext;
            _localizationService    = localizationService;
            _customerService        = customerService;
            _workflowMessageService = workflowMessageService;
            _vendorService          = vendorService;
            _urlRecordService       = urlRecordService;
            _pictureService         = pictureService;

            _localizationSettings = localizationSettings;
            _vendorSettings       = vendorSettings;
            _captchaSettings      = captchaSettings;

            _countryService      = countryService;
            _categoryService     = categoryService;
            _catalogModelFactory = catalogModelFactory;
        }
Пример #5
0
        public VendorController(IVendorModelFactory vendorModelFactory,
                                IWorkContext workContext,
                                ILocalizationService localizationService,
                                ICustomerService customerService,
                                IWorkflowMessageService workflowMessageService,

                                IUrlRecordService urlRecordService,
                                IPictureService pictureService,
                                LocalizationSettings localizationSettings,
                                ,
Пример #6
0
 public VendorsController(IVendorService vendorService, IVendorModelFactory vendorModelFactory)
 {
     _vendorService      = vendorService;
     _vendorModelFactory = vendorModelFactory;
 }
Пример #7
0
 public VendorController(IVendorModelFactory vendorModelFactory)
 {
     _vendorModelFactory = vendorModelFactory;
 }