本文整理汇总了C#中INewsLetterSubscriptionService类的典型用法代码示例。如果您正苦于以下问题:C# INewsLetterSubscriptionService类的具体用法?C# INewsLetterSubscriptionService怎么用?C# INewsLetterSubscriptionService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
INewsLetterSubscriptionService类属于命名空间,在下文中一共展示了INewsLetterSubscriptionService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CollectibleExportService
public CollectibleExportService(IProductService productService,
ICategoryService categoryService,
IManufacturerService manufacturerService,
IPictureService pictureService,
IUrlRecordService urlRecordService,
IStoreContext storeContext,
INewsLetterSubscriptionService newsLetterSubscriptionService,
ICountryService countryService, //not used
IStateProvinceService stateProvinceService,
IConsignorService consignorService,
IAuthenticationService authenticationService,
ILogger logger,
IRepository<AUCountryLotRecord> countrylotRepo,
IRepository<AUStateProvinceLotRecord> stateprovincelotRepo
)
{
this._productService = productService;
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._pictureService = pictureService;
this._urlRecordService = urlRecordService;
this._storeContext = storeContext;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._consignorService = consignorService;
this._authenticationService = authenticationService;
this._logger = logger; //NJM: AUConsignor
this._countrylotRepo = countrylotRepo;
this._stateprovincelotRepo = stateprovincelotRepo;
}
示例2: ExportManager
public ExportManager(ICategoryService categoryService,
IManufacturerService manufacturerService,
IProductService productService,
IProductAttributeService productAttributeService,
IProductTemplateService productTemplateService,
IPictureService pictureService,
INewsLetterSubscriptionService newsLetterSubscriptionService,
ILanguageService languageService,
MediaSettings mediaSettings,
ICommonServices services,
IStoreMappingService storeMappingService)
{
_categoryService = categoryService;
_manufacturerService = manufacturerService;
_productService = productService;
_productAttributeService = productAttributeService;
_productTemplateService = productTemplateService;
_pictureService = pictureService;
_newsLetterSubscriptionService = newsLetterSubscriptionService;
_languageService = languageService;
_mediaSettings = mediaSettings;
_services = services;
_storeMappingService = storeMappingService;
Logger = NullLogger.Instance;
}
示例3: TrialTrackerController
public TrialTrackerController(IRepository<TrialTrackerRecord> trialRepository, IProductService productService, ISettingService settingService, INewsLetterSubscriptionService mailService)
{
_productService = productService;
_trialRepository = trialRepository;
_settings = settingService;
_mailingService = mailService;
}
示例4: WebHooksController
public WebHooksController(MailChimpSettings settings, HttpContextBase httpContext,
IStoreContext storeContext, INewsLetterSubscriptionService newsLetterSubscriptionService)
{
_settings = settings;
_httpContext = httpContext;
_storeContext = storeContext;
_newsLetterSubscriptionService = newsLetterSubscriptionService;
}
示例5: NewsLetterSubscriptionController
public NewsLetterSubscriptionController(INewsLetterSubscriptionService newsLetterSubscriptionService,
IDateTimeHelper dateTimeHelper,ILocalizationService localizationService,
IPermissionService permissionService, AdminAreaSettings adminAreaSettings)
{
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._dateTimeHelper = dateTimeHelper;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例6: CustomerController
public CustomerController(ICustomerService customerService,
INewsLetterSubscriptionService newsLetterSubscriptionService,
IGenericAttributeService genericAttributeService,
ICustomerRegistrationService customerRegistrationService,
ICustomerReportService customerReportService, IDateTimeHelper dateTimeHelper,
ILocalizationService localizationService, DateTimeSettings dateTimeSettings,
TaxSettings taxSettings, RewardPointsSettings rewardPointsSettings,
ICountryService countryService, IStateProvinceService stateProvinceService,
IAddressService addressService,
CustomerSettings customerSettings, ITaxService taxService,
IWorkContext workContext, IStoreContext storeContext,
IPriceFormatter priceFormatter,
IOrderService orderService,
IExportManager exportManager,
ICustomerActivityService customerActivityService,
IPriceCalculationService priceCalculationService,
IPermissionService permissionService, AdminAreaSettings adminAreaSettings,
IQueuedEmailService queuedEmailService, EmailAccountSettings emailAccountSettings,
IEmailAccountService emailAccountService, ForumSettings forumSettings,
IForumService forumService, IOpenAuthenticationService openAuthenticationService,
AddressSettings addressSettings, IStoreService storeService)
{
this._customerService = customerService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._genericAttributeService = genericAttributeService;
this._customerRegistrationService = customerRegistrationService;
this._customerReportService = customerReportService;
this._dateTimeHelper = dateTimeHelper;
this._localizationService = localizationService;
this._dateTimeSettings = dateTimeSettings;
this._taxSettings = taxSettings;
this._rewardPointsSettings = rewardPointsSettings;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._addressService = addressService;
this._customerSettings = customerSettings;
this._taxService = taxService;
this._workContext = workContext;
this._storeContext = storeContext;
this._priceFormatter = priceFormatter;
this._orderService = orderService;
this._exportManager = exportManager;
this._customerActivityService = customerActivityService;
this._priceCalculationService = priceCalculationService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
this._queuedEmailService = queuedEmailService;
this._emailAccountSettings = emailAccountSettings;
this._emailAccountService = emailAccountService;
this._forumSettings = forumSettings;
this._forumService = forumService;
this._openAuthenticationService = openAuthenticationService;
this._addressSettings = addressSettings;
this._storeService = storeService;
}
示例7: NewsletterController
public NewsletterController(ILocalizationService localizationService,
IWorkContext workContext, INewsLetterSubscriptionService newsLetterSubscriptionService,
IWorkflowMessageService workflowMessageService, CustomerSettings customerSettings)
{
this._localizationService = localizationService;
this._workContext = workContext;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._workflowMessageService = workflowMessageService;
this._customerSettings = customerSettings;
}
示例8: SetUp
public new void SetUp()
{
_categoryService = MockRepository.GenerateMock<ICategoryService>();
_manufacturerService = MockRepository.GenerateMock<IManufacturerService>();
_productAttributeService = MockRepository.GenerateMock<IProductAttributeService>();
_pictureService = MockRepository.GenerateMock<IPictureService>();
_newsLetterSubscriptionService = MockRepository.GenerateMock<INewsLetterSubscriptionService>();
_exportManager = new ExportManager(_categoryService,
_manufacturerService, _productAttributeService, _pictureService, _newsLetterSubscriptionService);
}
示例9: SetUp
public new void SetUp()
{
_categoryService = MockRepository.GenerateMock<ICategoryService>();
_manufacturerService = MockRepository.GenerateMock<IManufacturerService>();
_productService = MockRepository.GenerateMock<IProductService>();
_pictureService = MockRepository.GenerateMock<IPictureService>();
_newsLetterSubscriptionService = MockRepository.GenerateMock<INewsLetterSubscriptionService>();
_storeInformationSettings = new StoreInformationSettings();
_exportManager = new ExportManager(_categoryService,
_manufacturerService, _productService, _pictureService, _newsLetterSubscriptionService, _storeInformationSettings);
}
示例10: NewsLetterSubscriptionController
public NewsLetterSubscriptionController(INewsLetterSubscriptionService newsLetterSubscriptionService,
IDateTimeHelper dateTimeHelper,
IPermissionService permissionService,
AdminAreaSettings adminAreaSettings,
IStoreService storeService)
{
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._dateTimeHelper = dateTimeHelper;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
this._storeService = storeService;
}
示例11: AccountRegistrationService
/// <summary>
/// Ctor
/// </summary>
/// <param name="accountService">Account service</param>
/// <param name="encryptionService">Encryption service</param>
/// <param name="newsLetterSubscriptionService">Newsletter subscription service</param>
/// <param name="localizationService">Localization service</param>
/// <param name="rewardPointsSettings">Reward points settings</param>
/// <param name="accountSettings">Account settings</param>
public AccountRegistrationService(IAccountService accountService,
IEncryptionService encryptionService,
INewsLetterSubscriptionService newsLetterSubscriptionService,
ILocalizationService localizationService,
AccountSettings accountSettings)
{
this._accountService = accountService;
this._encryptionService = encryptionService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._localizationService = localizationService;
this._accountSettings = accountSettings;
}
示例12: ExportManager
public ExportManager(ICategoryService categoryService,
IManufacturerService manufacturerService,
IProductAttributeService productAttributeService,
IPictureService pictureService,
INewsLetterSubscriptionService newsLetterSubscriptionService)
{
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._productAttributeService = productAttributeService;
this._pictureService = pictureService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
}
示例13: CustomerRegistrationService
/// <summary>
/// Ctor
/// </summary>
/// <param name="customerService">Customer service</param>
/// <param name="encryptionService">Encryption service</param>
/// <param name="newsLetterSubscriptionService">Newsletter subscription service</param>
/// <param name="localizationService">Localization service</param>
/// <param name="rewardPointsSettings">Reward points settings</param>
/// <param name="customerSettings">Customer settings</param>
public CustomerRegistrationService(ICustomerService customerService,
IEncryptionService encryptionService,
INewsLetterSubscriptionService newsLetterSubscriptionService,
ILocalizationService localizationService,
RewardPointsSettings rewardPointsSettings, CustomerSettings customerSettings)
{
this._customerService = customerService;
this._encryptionService = encryptionService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._localizationService = localizationService;
this._rewardPointsSettings = rewardPointsSettings;
this._customerSettings = customerSettings;
}
示例14: NewsletterController
public NewsletterController(
IWorkContext workContext,
INewsLetterSubscriptionService newsLetterSubscriptionService,
IWorkflowMessageService workflowMessageService,
CustomerSettings customerSettings,
IStoreContext storeContext)
{
this._workContext = workContext;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._workflowMessageService = workflowMessageService;
this._customerSettings = customerSettings;
this._storeContext = storeContext;
}
示例15: NewsLetterSubscriptionController
public NewsLetterSubscriptionController(INewsLetterSubscriptionService newsLetterSubscriptionService,
IDateTimeHelper dateTimeHelper,
ILocalizationService localizationService,
IPermissionService permissionService,
IStoreContext storeContext,
IStoreService storeService)
{
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._dateTimeHelper = dateTimeHelper;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._storeContext = storeContext;
this._storeService = storeService;
}