public CustomerReminderController(
     ICustomerReminderViewModelService customerReminderViewModelService,
     ICustomerService customerService,
     IGroupService groupService,
     ICustomerAttributeService customerAttributeService,
     ICustomerTagService customerTagService,
     ITranslationService translationService,
     ICollectionService collectionService,
     IStoreService storeService,
     IVendorService vendorService,
     ICustomerReminderService customerReminderService,
     IEmailAccountService emailAccountService,
     IDateTimeService dateTimeService)
 {
     _customerReminderViewModelService = customerReminderViewModelService;
     _customerService          = customerService;
     _groupService             = groupService;
     _customerAttributeService = customerAttributeService;
     _customerTagService       = customerTagService;
     _translationService       = translationService;
     _collectionService        = collectionService;
     _storeService             = storeService;
     _vendorService            = vendorService;
     _customerReminderService  = customerReminderService;
     _emailAccountService      = emailAccountService;
     _dateTimeService          = dateTimeService;
 }
 public CustomerReminderController(
     ICustomerReminderViewModelService customerReminderViewModelService,
     ICustomerService customerService,
     ICustomerAttributeService customerAttributeService,
     ICustomerTagService customerTagService,
     ILocalizationService localizationService,
     IManufacturerService manufacturerService,
     IStoreService storeService,
     IVendorService vendorService,
     ICustomerReminderService customerReminderService,
     IEmailAccountService emailAccountService,
     IDateTimeHelper dateTimeHelper)
 {
     _customerReminderViewModelService = customerReminderViewModelService;
     _customerService          = customerService;
     _customerAttributeService = customerAttributeService;
     _customerTagService       = customerTagService;
     _localizationService      = localizationService;
     _manufacturerService      = manufacturerService;
     _storeService             = storeService;
     _vendorService            = vendorService;
     _customerReminderService  = customerReminderService;
     _emailAccountService      = emailAccountService;
     _dateTimeHelper           = dateTimeHelper;
 }
Пример #3
0
 public CustomerReminderViewModelService(ICustomerService customerService,
                                         ILocalizationService localizationService,
                                         ICustomerActivityService customerActivityService,
                                         ICustomerReminderService customerReminderService,
                                         IEmailAccountService emailAccountService,
                                         IDateTimeHelper dateTimeHelper,
                                         IServiceProvider serviceProvider)
 {
     _customerService         = customerService;
     _localizationService     = localizationService;
     _customerActivityService = customerActivityService;
     _customerReminderService = customerReminderService;
     _emailAccountService     = emailAccountService;
     _dateTimeHelper          = dateTimeHelper;
     _serviceProvider         = serviceProvider;
 }
 public CustomerReminderViewModelService(ICustomerService customerService,
                                         ITranslationService translationService,
                                         ICustomerActivityService customerActivityService,
                                         ICustomerReminderService customerReminderService,
                                         IEmailAccountService emailAccountService,
                                         IDateTimeService dateTimeService,
                                         IServiceProvider serviceProvider)
 {
     _customerService         = customerService;
     _translationService      = translationService;
     _customerActivityService = customerActivityService;
     _customerReminderService = customerReminderService;
     _emailAccountService     = emailAccountService;
     _dateTimeService         = dateTimeService;
     _serviceProvider         = serviceProvider;
 }
Пример #5
0
 public CustomerReminderController(
     ICustomerReminderViewModelService customerReminderViewModelService,
     ICustomerService customerService,
     ICustomerAttributeService customerAttributeService,
     ICustomerTagService customerTagService,
     ILocalizationService localizationService,
     IManufacturerService manufacturerService,
     IStoreService storeService,
     IVendorService vendorService,
     ICustomerReminderService customerReminderService,
     IEmailAccountService emailAccountService)
 {
     this._customerReminderViewModelService = customerReminderViewModelService;
     this._customerService          = customerService;
     this._customerAttributeService = customerAttributeService;
     this._customerTagService       = customerTagService;
     this._localizationService      = localizationService;
     this._manufacturerService      = manufacturerService;
     this._storeService             = storeService;
     this._vendorService            = vendorService;
     this._customerReminderService  = customerReminderService;
     this._emailAccountService      = emailAccountService;
 }
Пример #6
0
 public CustomerReminderLastPurchaseScheduleTask(ICustomerReminderService customerReminderService)
 {
     _customerReminderService = customerReminderService;
 }
Пример #7
0
 public CustomerReminderCompletedOrderScheduleTask(ICustomerReminderService customerReminderService)
 {
     _customerReminderService = customerReminderService;
 }
 public CustomerReminderBirthdayScheduleTask(ICustomerReminderService customerReminderService)
 {
     this._customerReminderService = customerReminderService;
 }
 public CustomerReminderUnpaidOrderScheduleTask(ICustomerReminderService customerReminderService)
 {
     this._customerReminderService = customerReminderService;
 }
 public CustomerReminderAbandonedCartScheduleTask(ICustomerReminderService customerReminderService)
 {
     _customerReminderService = customerReminderService;
 }
 public CustomerReminderRegisteredCustomerScheduleTask(ICustomerReminderService customerReminderService)
 {
     this._customerReminderService = customerReminderService;
 }
Пример #12
0
 public CustomerReminderLastActivityScheduleTask(ICustomerReminderService customerReminderService)
 {
     this._customerReminderService = customerReminderService;
 }