public WidgetsSendinblueViewComponent(ICustomerService customerService,
                                       IWorkContext workContext,
                                       SendinblueSettings sendinblueSettings)
 {
     _customerService    = customerService;
     _workContext        = workContext;
     _sendinblueSettings = sendinblueSettings;
 }
 public SendinblueEmailSender(IDownloadService downloadService,
                              INopFileProvider fileProvider,
                              ISmtpBuilder smtpBuilder,
                              IStoreContext storeContext,
                              SendinblueSettings sendinblueSettings) : base(downloadService, fileProvider, smtpBuilder)
 {
     _storeContext       = storeContext;
     _sendinblueSettings = sendinblueSettings;
 }
 public SendinblueMarketingAutomationManager(CurrencySettings currencySettings,
                                             IActionContextAccessor actionContextAccessor,
                                             IAddressService addressService,
                                             ICategoryService categoryService,
                                             ICountryService countryService,
                                             ICurrencyService currencyService,
                                             ICustomerService customerService,
                                             IGenericAttributeService genericAttributeService,
                                             ILogger logger,
                                             IOrderService orderService,
                                             IOrderTotalCalculationService orderTotalCalculationService,
                                             IPictureService pictureService,
                                             IProductAttributeParser productAttributeParser,
                                             IProductService productService,
                                             IShoppingCartService shoppingCartService,
                                             IStateProvinceService stateProvinceService,
                                             IStoreContext storeContext,
                                             IUrlHelperFactory urlHelperFactory,
                                             IUrlRecordService urlRecordService,
                                             IWebHelper webHelper,
                                             IWorkContext workContext,
                                             SendinblueSettings sendinblueSettings)
 {
     _currencySettings        = currencySettings;
     _actionContextAccessor   = actionContextAccessor;
     _addressService          = addressService;
     _categoryService         = categoryService;
     _countryService          = countryService;
     _currencyService         = currencyService;
     _customerService         = customerService;
     _genericAttributeService = genericAttributeService;
     _logger       = logger;
     _orderService = orderService;
     _orderTotalCalculationService = orderTotalCalculationService;
     _pictureService         = pictureService;
     _productAttributeParser = productAttributeParser;
     _productService         = productService;
     _shoppingCartService    = shoppingCartService;
     _stateProvinceService   = stateProvinceService;
     _storeContext           = storeContext;
     _urlHelperFactory       = urlHelperFactory;
     _urlRecordService       = urlRecordService;
     _webHelper          = webHelper;
     _workContext        = workContext;
     _sendinblueSettings = sendinblueSettings;
 }