Example #1
0
 public AvalaraTaxController(AvalaraTaxManager avalaraTaxManager,
                             ICacheKeyService cacheKeyService,
                             IGenericAttributeService genericAttributeService,
                             ILocalizationService localizationService,
                             INotificationService notificationService,
                             IPermissionService permissionService,
                             ISettingService settingService,
                             IStaticCacheManager cacheManager,
                             ITaxCategoryService taxCategoryService,
                             ITaxModelFactory taxModelFactory,
                             ITaxPluginManager taxPluginManager,
                             TaxSettings taxSettings) : base(permissionService,
                                                             settingService,
                                                             taxCategoryService,
                                                             taxModelFactory,
                                                             taxPluginManager,
                                                             taxSettings)
 {
     _avalaraTaxManager       = avalaraTaxManager;
     _cacheKeyService         = cacheKeyService;
     _genericAttributeService = genericAttributeService;
     _localizationService     = localizationService;
     _notificationService     = notificationService;
     _permissionService       = permissionService;
     _cacheManager            = cacheManager;
     _taxCategoryService      = taxCategoryService;
     _taxPluginManager        = taxPluginManager;
 }
Example #2
0
 public OverriddenTaxController(AvalaraTaxManager avalaraTaxManager,
                                IGenericAttributeService genericAttributeService,
                                ILocalizationService localizationService,
                                IPermissionService permissionService,
                                ISettingService settingService,
                                IStaticCacheManager cacheManager,
                                ITaxCategoryService taxCategoryService,
                                ITaxModelFactory taxModelFactory,
                                ITaxService taxService,
                                IWidgetService widgetService,
                                IWorkContext workContext,
                                TaxSettings taxSettings,
                                WidgetSettings widgetSettings) : base(permissionService,
                                                                      settingService,
                                                                      taxCategoryService,
                                                                      taxModelFactory,
                                                                      taxService,
                                                                      taxSettings)
 {
     this._avalaraTaxManager       = avalaraTaxManager;
     this._genericAttributeService = genericAttributeService;
     this._localizationService     = localizationService;
     this._permissionService       = permissionService;
     this._settingService          = settingService;
     this._cacheManager            = cacheManager;
     this._taxCategoryService      = taxCategoryService;
     this._taxModelFactory         = taxModelFactory;
     this._taxService     = taxService;
     this._widgetService  = widgetService;
     this._workContext    = workContext;
     this._taxSettings    = taxSettings;
     this._widgetSettings = widgetSettings;
 }
Example #3
0
 public ManageTaxesController(ITaxesService taxesService,
                              ITaxModelFactory taxModelFactory,
                              ILocalizationService localizationService,
                              ILocalizedEntityService localizedEntityService)
 {
     _taxesService           = taxesService;
     _taxModelFactory        = taxModelFactory;
     _localizationService    = localizationService;
     _localizedEntityService = localizedEntityService;
 }
Example #4
0
 public TaxController(IPermissionService permissionService,
                      ISettingService settingService,
                      ITaxCategoryService taxCategoryService,
                      ITaxModelFactory taxModelFactory,
                      ITaxService taxService,
                      TaxSettings taxSettings)
 {
     _permissionService  = permissionService;
     _settingService     = settingService;
     _taxCategoryService = taxCategoryService;
     _taxModelFactory    = taxModelFactory;
     _taxService         = taxService;
     _taxSettings        = taxSettings;
 }
 public TaxController(IPermissionService permissionService,
                      ISettingService settingService,
                      ITaxCategoryService taxCategoryService,
                      IGenericAttributeService genericAttributeService,
                      IWorkContext workContext,
                      ITaxModelFactory taxModelFactory,
                      ITaxPluginManager taxPluginManager,
                      TaxSettings taxSettings)
 {
     _permissionService       = permissionService;
     _settingService          = settingService;
     _taxCategoryService      = taxCategoryService;
     _genericAttributeService = genericAttributeService;
     _workContext             = workContext;
     _taxModelFactory         = taxModelFactory;
     _taxPluginManager        = taxPluginManager;
     _taxSettings             = taxSettings;
 }