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;
 }
 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;
 }
Пример #3
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;
 }