public AbcBonusBundleViewComponent(
     AbcBonusBundleSettings abcBonusBundleSettings,
     ILogger logger,
     IProductAbcBundleService productAbcBundleService,
     IProductService productService
     )
 {
     _abcBonusBundleSettings = abcBonusBundleSettings;
     _logger = logger;
     _productAbcBundleService = productAbcBundleService;
     _productService          = productService;
 }
Exemple #2
0
 public AbcBonusBundleController(ILogger logger,
                                 IProductAbcBundleService productAbcBundleService,
                                 IProductService productService,
                                 AbcBonusBundleSettings abcBonusBundleSettings,
                                 ISettingService settingService,
                                 ILocalizationService localizationService,
                                 INotificationService notificationService
                                 )
 {
     _logger = logger;
     _productAbcBundleService = productAbcBundleService;
     _productService          = productService;
     _abcBonusBundleSettings  = abcBonusBundleSettings;
     _settingService          = settingService;
     _localizationService     = localizationService;
     _notificationService     = notificationService;
 }