Ejemplo n.º 1
0
 public ShippingController(IAddressService addressService,
                           ICountryService countryService,
                           ICustomerActivityService customerActivityService,
                           IDateRangeService dateRangeService,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           IPermissionService permissionService,
                           IPluginFinder pluginFinder,
                           ISettingService settingService,
                           IShippingModelFactory shippingModelFactory,
                           IShippingService shippingService,
                           ShippingSettings shippingSettings,
                           IUrlRecordService urlRecordService)
 {
     this._addressService          = addressService;
     this._countryService          = countryService;
     this._customerActivityService = customerActivityService;
     this._dateRangeService        = dateRangeService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._permissionService       = permissionService;
     this._pluginFinder            = pluginFinder;
     this._settingService          = settingService;
     this._shippingModelFactory    = shippingModelFactory;
     this._shippingService         = shippingService;
     this._shippingSettings        = shippingSettings;
     this._urlRecordService        = urlRecordService;
 }
Ejemplo n.º 2
0
 public ShippingController(IAddressService addressService,
                           ICountryService countryService,
                           ICustomerActivityService customerActivityService,
                           IDateRangeService dateRangeService,
                           IEventPublisher eventPublisher,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           INotificationService notificationService,
                           IPermissionService permissionService,
                           IPickupPluginManager pickupPluginManager,
                           ISettingService settingService,
                           IShippingModelFactory shippingModelFactory,
                           IShippingPluginManager shippingPluginManager,
                           IShippingService shippingService,
                           ShippingSettings shippingSettings)
 {
     _addressService          = addressService;
     _countryService          = countryService;
     _customerActivityService = customerActivityService;
     _dateRangeService        = dateRangeService;
     _eventPublisher          = eventPublisher;
     _localizationService     = localizationService;
     _localizedEntityService  = localizedEntityService;
     _notificationService     = notificationService;
     _permissionService       = permissionService;
     _pickupPluginManager     = pickupPluginManager;
     _settingService          = settingService;
     _shippingModelFactory    = shippingModelFactory;
     _shippingPluginManager   = shippingPluginManager;
     _shippingService         = shippingService;
     _shippingSettings        = shippingSettings;
 }