Esempio n. 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;
 }
Esempio n. 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;
 }
Esempio n. 3
0
 public VendorModelFactory(IAddressAttributeModelFactory addressAttributeModelFactory,
                           IAddressService addressService,
                           IBaseAdminModelFactory baseAdminModelFactory,
                           ICustomerService customerService,
                           IDateTimeHelper dateTimeHelper,
                           IGenericAttributeService genericAttributeService,
                           ILocalizationService localizationService,
                           ILocalizedModelFactory localizedModelFactory,
                           IUrlRecordService urlRecordService,
                           IVendorAttributeParser vendorAttributeParser,
                           IVendorAttributeService vendorAttributeService,
                           IVendorService vendorService,
                           VendorSettings vendorSettings)
 {
     _addressAttributeModelFactory = addressAttributeModelFactory;
     _addressService          = addressService;
     _baseAdminModelFactory   = baseAdminModelFactory;
     _customerService         = customerService;
     _dateTimeHelper          = dateTimeHelper;
     _genericAttributeService = genericAttributeService;
     _localizationService     = localizationService;
     _localizedModelFactory   = localizedModelFactory;
     _urlRecordService        = urlRecordService;
     _vendorAttributeParser   = vendorAttributeParser;
     _vendorAttributeService  = vendorAttributeService;
     _vendorService           = vendorService;
     _vendorSettings          = vendorSettings;
 }
Esempio n. 4
0
 public VendorModelFactory(IAddressAttributeParser addressAttributeParser,
                           IAddressAttributeService addressAttributeService,
                           IAddressService addressService,
                           IBaseAdminModelFactory baseAdminModelFactory,
                           ICustomerService customerService,
                           IDateTimeHelper dateTimeHelper,
                           IGenericAttributeService genericAttributeService,
                           ILocalizedModelFactory localizedModelFactory,
                           IVendorAttributeParser vendorAttributeParser,
                           IVendorAttributeService vendorAttributeService,
                           IVendorService vendorService,
                           VendorSettings vendorSettings)
 {
     this._addressAttributeParser  = addressAttributeParser;
     this._addressAttributeService = addressAttributeService;
     this._addressService          = addressService;
     this._baseAdminModelFactory   = baseAdminModelFactory;
     this._customerService         = customerService;
     this._dateTimeHelper          = dateTimeHelper;
     this._genericAttributeService = genericAttributeService;
     this._localizedModelFactory   = localizedModelFactory;
     this._vendorAttributeParser   = vendorAttributeParser;
     this._vendorAttributeService  = vendorAttributeService;
     this._vendorService           = vendorService;
     this._vendorSettings          = vendorSettings;
 }
Esempio n. 5
0
 public VendorsController(IVendorApiService vendorApiService,
                          IJsonFieldsSerializer jsonFieldsSerializer,
                          IVendorService vendorService,
                          IUrlRecordService urlRecordService,
                          ICustomerActivityService customerActivityService,
                          ILocalizationService localizationService,
                          IFactory <Vendor> factory,
                          IAclService aclService,
                          IStoreMappingService storeMappingService,
                          IStoreService storeService,
                          ICustomerService customerService,
                          IDiscountService discountService,
                          IPictureService pictureService,
                          IManufacturerService manufacturerService,
                          //IVendorTagService VendorTagService,
                          IVendorAttributeService vendorAttributeService,
                          IDTOHelper dtoHelper) : base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService, customerActivityService, localizationService, pictureService)
 {
     _vendorApiService    = vendorApiService;
     _factory             = factory;
     _manufacturerService = manufacturerService;
     //_VendorTagService = VendorTagService;
     _urlRecordService       = urlRecordService;
     _vendorService          = vendorService;
     _vendorAttributeService = vendorAttributeService;
     _dtoHelper = dtoHelper;
 }
 public VendorAttributeModelFactory(ILocalizationService localizationService,
                                    ILocalizedModelFactory localizedModelFactory,
                                    IVendorAttributeService vendorAttributeService)
 {
     _localizationService    = localizationService;
     _localizedModelFactory  = localizedModelFactory;
     _vendorAttributeService = vendorAttributeService;
 }
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="vendorAttributeParser">Vendor attribute parser</param>
 /// <param name="vendorAttributeService">Vendor attribute service</param>
 /// <param name="workContext">Work context</param>
 public VendorAttributeFormatter(IVendorAttributeParser vendorAttributeParser,
                                 IVendorAttributeService vendorAttributeService,
                                 IWorkContext workContext)
 {
     this._vendorAttributeParser  = vendorAttributeParser;
     this._vendorAttributeService = vendorAttributeService;
     this._workContext            = workContext;
 }
Esempio n. 8
0
 public VendorAttributeConverter(IVendorAttributeService vendorAttributeService,
                                 IVendorAttributeParser vendorAttributeParser,
                                 IDownloadService downloadService,
                                 IApiTypeConverter apiTypeConverter)
 {
     _vendorAttributeService = vendorAttributeService;
     _vendorAttributeParser  = vendorAttributeParser;
     _downloadService        = downloadService;
 }
Esempio n. 9
0
 public VendorAttributeFormatter(ILocalizationService localizationService,
                                 IVendorAttributeParser vendorAttributeParser,
                                 IVendorAttributeService vendorAttributeService,
                                 IWorkContext workContext)
 {
     _localizationService    = localizationService;
     _vendorAttributeParser  = vendorAttributeParser;
     _vendorAttributeService = vendorAttributeService;
     _workContext            = workContext;
 }
Esempio n. 10
0
 public VendorAttributeModelFactory(ILocalizationService localizationService,
                                    ILocalizedModelFactory localizedModelFactory,
                                    IVendorAttributeService vendorAttributeService,
                                    IWorkContext workContext)
 {
     this._localizationService    = localizationService;
     this._localizedModelFactory  = localizedModelFactory;
     this._vendorAttributeService = vendorAttributeService;
     this._workContext            = workContext;
 }
Esempio n. 11
0
 public VendorAttributeController(ICustomerActivityService customerActivityService,
                                  ILocalizationService localizationService,
                                  ILocalizedEntityService localizedEntityService,
                                  IPermissionService permissionService,
                                  IVendorAttributeModelFactory vendorAttributeModelFactory,
                                  IVendorAttributeService vendorAttributeService)
 {
     this._customerActivityService     = customerActivityService;
     this._localizationService         = localizationService;
     this._localizedEntityService      = localizedEntityService;
     this._permissionService           = permissionService;
     this._vendorAttributeModelFactory = vendorAttributeModelFactory;
     this._vendorAttributeService      = vendorAttributeService;
 }
 public VendorAttributeController(ICustomerActivityService customerActivityService,
                                  ILocalizationService localizationService,
                                  ILocalizedEntityService localizedEntityService,
                                  INotificationService notificationService,
                                  IPermissionService permissionService,
                                  IVendorAttributeModelFactory vendorAttributeModelFactory,
                                  IVendorAttributeService vendorAttributeService)
 {
     _customerActivityService     = customerActivityService;
     _localizationService         = localizationService;
     _localizedEntityService      = localizedEntityService;
     _notificationService         = notificationService;
     _permissionService           = permissionService;
     _vendorAttributeModelFactory = vendorAttributeModelFactory;
     _vendorAttributeService      = vendorAttributeService;
 }
Esempio n. 13
0
 public VendorAttributeController(ICustomerActivityService customerActivityService,
                                  ILanguageService languageService,
                                  ILocalizationService localizationService,
                                  ILocalizedEntityService localizedEntityService,
                                  IPermissionService permissionService,
                                  IVendorAttributeService vendorAttributeService,
                                  IWorkContext workContext)
 {
     this._customerActivityService = customerActivityService;
     this._languageService         = languageService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._permissionService       = permissionService;
     this._vendorAttributeService  = vendorAttributeService;
     this._workContext             = workContext;
 }
 public VendorModelFactory(CaptchaSettings captchaSettings,
                           CommonSettings commonSettings,
                           IGenericAttributeService genericAttributeService,
                           ILocalizationService localizationService,
                           IPictureService pictureService,
                           IVendorAttributeParser vendorAttributeParser,
                           IVendorAttributeService vendorAttributeService,
                           IWorkContext workContext,
                           MediaSettings mediaSettings,
                           VendorSettings vendorSettings)
 {
     this._captchaSettings         = captchaSettings;
     this._commonSettings          = commonSettings;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._pictureService          = pictureService;
     this._vendorAttributeParser   = vendorAttributeParser;
     this._vendorAttributeService  = vendorAttributeService;
     this._workContext             = workContext;
     this._mediaSettings           = mediaSettings;
     this._vendorSettings          = vendorSettings;
 }
Esempio n. 15
0
 public VendorController(ICustomerService customerService,
                         ILocalizationService localizationService,
                         IVendorService vendorService,
                         IPermissionService permissionService,
                         IUrlRecordService urlRecordService,
                         ILanguageService languageService,
                         ILocalizedEntityService localizedEntityService,
                         IPictureService pictureService,
                         IDateTimeHelper dateTimeHelper,
                         VendorSettings vendorSettings,
                         ICustomerActivityService customerActivityService,
                         IAddressService addressService,
                         ICountryService countryService,
                         IStateProvinceService stateProvinceService,
                         IGenericAttributeService genericAttributeService,
                         IVendorAttributeParser vendorAttributeParser,
                         IVendorAttributeService vendorAttributeService)
 {
     this._customerService         = customerService;
     this._localizationService     = localizationService;
     this._vendorService           = vendorService;
     this._permissionService       = permissionService;
     this._urlRecordService        = urlRecordService;
     this._languageService         = languageService;
     this._localizedEntityService  = localizedEntityService;
     this._pictureService          = pictureService;
     this._dateTimeHelper          = dateTimeHelper;
     this._vendorSettings          = vendorSettings;
     this._customerActivityService = customerActivityService;
     this._addressService          = addressService;
     this._countryService          = countryService;
     this._stateProvinceService    = stateProvinceService;
     this._genericAttributeService = genericAttributeService;
     this._vendorAttributeParser   = vendorAttributeParser;
     this._vendorAttributeService  = vendorAttributeService;
 }
 public VendorAttributeParser(ILocalizationService localizationService,
                              IVendorAttributeService vendorAttributeService)
 {
     _localizationService    = localizationService;
     _vendorAttributeService = vendorAttributeService;
 }