コード例 #1
0
 public CustomerActionController(
     ICustomerActionViewModelService customerActionViewModelService,
     ICustomerService customerService,
     ICustomerAttributeService customerAttributeService,
     ICustomerTagService customerTagService,
     ILocalizationService localizationService,
     ICustomerActivityService customerActivityService,
     IProductService productService,
     ICategoryService categoryService,
     IManufacturerService manufacturerService,
     IStoreService storeService,
     IVendorService vendorService,
     ICustomerActionService customerActionService,
     IProductAttributeService productAttributeService,
     ISpecificationAttributeService specificationAttributeService)
 {
     this._customerActionViewModelService = customerActionViewModelService;
     this._customerService               = customerService;
     this._customerAttributeService      = customerAttributeService;
     this._customerTagService            = customerTagService;
     this._localizationService           = localizationService;
     this._customerActivityService       = customerActivityService;
     this._productService                = productService;
     this._categoryService               = categoryService;
     this._manufacturerService           = manufacturerService;
     this._storeService                  = storeService;
     this._vendorService                 = vendorService;
     this._customerActionService         = customerActionService;
     this._productAttributeService       = productAttributeService;
     this._specificationAttributeService = specificationAttributeService;
 }
コード例 #2
0
 public CustomerActionController(
     ICustomerActionViewModelService customerActionViewModelService,
     ICustomerService customerService,
     ICustomerAttributeService customerAttributeService,
     ICustomerTagService customerTagService,
     ILocalizationService localizationService,
     ICustomerActivityService customerActivityService,
     IProductService productService,
     ICategoryService categoryService,
     IManufacturerService manufacturerService,
     IStoreService storeService,
     IVendorService vendorService,
     ICustomerActionService customerActionService,
     IProductAttributeService productAttributeService,
     ISpecificationAttributeService specificationAttributeService,
     IDateTimeHelper dateTimeHelper)
 {
     _customerActionViewModelService = customerActionViewModelService;
     _customerService = customerService;
     _customerAttributeService = customerAttributeService;
     _customerTagService = customerTagService;
     _localizationService = localizationService;
     _customerActivityService = customerActivityService;
     _productService = productService;
     _categoryService = categoryService;
     _manufacturerService = manufacturerService;
     _storeService = storeService;
     _vendorService = vendorService;
     _customerActionService = customerActionService;
     _productAttributeService = productAttributeService;
     _specificationAttributeService = specificationAttributeService;
     _dateTimeHelper = dateTimeHelper;
 }
コード例 #3
0
 public CustomerActionController(
     ICustomerActionViewModelService customerActionViewModelService,
     ICustomerService customerService,
     IGroupService groupService,
     ICustomerAttributeService customerAttributeService,
     ICustomerTagService customerTagService,
     ITranslationService translationService,
     ICustomerActivityService customerActivityService,
     IProductService productService,
     ICategoryService categoryService,
     ICollectionService collectionService,
     IStoreService storeService,
     IVendorService vendorService,
     ICustomerActionService customerActionService,
     IProductAttributeService productAttributeService,
     ISpecificationAttributeService specificationAttributeService,
     IDateTimeService dateTimeService)
 {
     _customerActionViewModelService = customerActionViewModelService;
     _customerService               = customerService;
     _groupService                  = groupService;
     _customerAttributeService      = customerAttributeService;
     _customerTagService            = customerTagService;
     _translationService            = translationService;
     _customerActivityService       = customerActivityService;
     _productService                = productService;
     _categoryService               = categoryService;
     _collectionService             = collectionService;
     _storeService                  = storeService;
     _vendorService                 = vendorService;
     _customerActionService         = customerActionService;
     _productAttributeService       = productAttributeService;
     _specificationAttributeService = specificationAttributeService;
     _dateTimeService               = dateTimeService;
 }