Example #1
0
        public MmsAdminDownloadController(CustomerSettings customerSettings,
                                          IDownloadService downloadService,
                                          ILocalizationService localizationService,
                                          IOrderService orderService,
                                          IProductService productService,
                                          IWorkContext workContext,
                                          MmsAdminService mmsAdminService,
                                          ICustomerService customerService) : base(
                customerSettings,
                downloadService,
                localizationService,
                orderService,
                productService,
                workContext)

        {
            _customerSettings    = customerSettings;
            _downloadService     = downloadService;
            _localizationService = localizationService;
            _orderService        = orderService;
            _productService      = productService;
            _workContext         = workContext;
            _mmsAdminService     = mmsAdminService;
            _customerService     = customerService;
        }
        public MmsAdminController(IAddressService addressService,
                                  ICountryService countryService,
                                  ILocalizationService localizationService,
                                  IPermissionService permissionService,
                                  IStateProvinceService stateProvinceService,
                                  AddressSettings customerSettings,
                                  INotificationService notificationService,
                                  ISettingService settingService,
                                  MMSSettings mmsSettings,
                                  MmsDataImportDirect importManagerOverride,
                                  MmsAdminService mmsAdminService)

        {
            _addressService        = addressService;
            _countryService        = countryService;
            _localizationService   = localizationService;
            _permissionService     = permissionService;
            _stateProvinceService  = stateProvinceService;
            _addressSettings       = customerSettings;
            _notificationService   = notificationService;
            _settingService        = settingService;
            _mmsSettings           = mmsSettings;
            _importManagerOverride = importManagerOverride;
            _mmsAdminService       = mmsAdminService;
        }