本文整理汇总了C#中ICustomerRegistrationService类的典型用法代码示例。如果您正苦于以下问题:C# ICustomerRegistrationService类的具体用法?C# ICustomerRegistrationService怎么用?C# ICustomerRegistrationService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ICustomerRegistrationService类属于命名空间,在下文中一共展示了ICustomerRegistrationService类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CustomerController
public CustomerController(ICustomerRegistrationService customerRegistrationService,ICustomerService customerService,IAuthenticationService authenticationService, IWorkContext workContext)
{
_customerRegistrationService = customerRegistrationService;
_customerService = customerService;
_workContext = workContext;
_authenticationService = authenticationService;
}
示例2: ExternalAuthorizer
public ExternalAuthorizer(IAuthenticationService authenticationService,
IOpenAuthenticationService openAuthenticationService,
IGenericAttributeService genericAttributeService,
ICustomerRegistrationService customerRegistrationService,
ICustomerActivityService customerActivityService,
ILocalizationService localizationService,
IWorkContext workContext,
IStoreContext storeContext,
CustomerSettings customerSettings,
ExternalAuthenticationSettings externalAuthenticationSettings,
IShoppingCartService shoppingCartService,
IWorkflowMessageService workflowMessageService,
IEventPublisher eventPublisher,
LocalizationSettings localizationSettings)
{
this._authenticationService = authenticationService;
this._openAuthenticationService = openAuthenticationService;
this._genericAttributeService = genericAttributeService;
this._customerRegistrationService = customerRegistrationService;
this._customerActivityService = customerActivityService;
this._localizationService = localizationService;
this._workContext = workContext;
this._storeContext = storeContext;
this._customerSettings = customerSettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
this._shoppingCartService = shoppingCartService;
this._workflowMessageService = workflowMessageService;
this._eventPublisher = eventPublisher;
this._localizationSettings = localizationSettings;
}
示例3: CustomerController
public CustomerController(IAuthenticationService authenticationService,
ILocalizationService localizationService,
IWorkContext workContext,
ICustomerService customerService,
ICustomerRegistrationService customerRegistrationService,
CustomerSettings customerSettings,
IAddressService addressService,
IWebHelper webHelper,
LocalizationSettings localizationSettings,
CaptchaSettings captchaSettings,
SecuritySettings securitySettings,
ExternalAuthenticationSettings externalAuthenticationSettings,
ICustomerActivityService customerActivityService,
DateTimeSettings dateTimeSettings,
IDateTimeHelper dateTimeHelper,
IGenericAttributeService genericAttributeService,
IPermissionService permissionService)
{
this._authenticationService = authenticationService;
this._localizationService = localizationService;
this._workContext = workContext;
this._customerRegistrationService = customerRegistrationService;
this._customerService = customerService;
this._customerSettings = customerSettings;
this._addressService = addressService;
this._webHelper = webHelper;
this._localizationSettings = localizationSettings;
this._captchaSettings = captchaSettings;
this._securitySettings = securitySettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
this._customerActivityService = customerActivityService;
this._dateTimeSettings = dateTimeSettings;
this._dateTimeHelper = dateTimeHelper;
this._genericAttributeService = genericAttributeService;
}
示例4: CustomerController
public CustomerController(IAuthenticationService authenticationService,
IDateTimeHelper dateTimeHelper,
DateTimeSettings dateTimeSettings, TaxSettings taxSettings,
ILocalizationService localizationService,
IWorkContext workContext, ICustomerService customerService,
ICustomerRegistrationService customerRegistrationService,
ITaxService taxService, RewardPointsSettings rewardPointsSettings,
CustomerSettings customerSettings, ForumSettings forumSettings,
OrderSettings orderSettings, IAddressService addressService,
ICountryService countryService, IStateProvinceService stateProvinceService,
IOrderTotalCalculationService orderTotalCalculationService,
IOrderProcessingService orderProcessingService, IOrderService orderService,
ICurrencyService currencyService, IPriceFormatter priceFormatter,
IPictureService pictureService, INewsLetterSubscriptionService newsLetterSubscriptionService,
IForumService forumService, IShoppingCartService shoppingCartService,
IOpenAuthenticationService openAuthenticationService,
IBackInStockSubscriptionService backInStockSubscriptionService, MediaSettings mediaSettings,
IWorkflowMessageService workflowMessageService, LocalizationSettings localizationSettings,
CaptchaSettings captchaSettings, ExternalAuthenticationSettings externalAuthenticationSettings)
{
this._authenticationService = authenticationService;
this._dateTimeHelper = dateTimeHelper;
this._dateTimeSettings = dateTimeSettings;
this._taxSettings = taxSettings;
this._localizationService = localizationService;
this._workContext = workContext;
this._customerService = customerService;
this._customerRegistrationService = customerRegistrationService;
this._taxService = taxService;
this._rewardPointsSettings = rewardPointsSettings;
this._customerSettings = customerSettings;
this._forumSettings = forumSettings;
this._orderSettings = orderSettings;
this._addressService = addressService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._orderProcessingService = orderProcessingService;
this._orderTotalCalculationService = orderTotalCalculationService;
this._orderService = orderService;
this._currencyService = currencyService;
this._priceFormatter = priceFormatter;
this._pictureService = pictureService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._forumService = forumService;
this._shoppingCartService = shoppingCartService;
this._openAuthenticationService = openAuthenticationService;
this._backInStockSubscriptionService = backInStockSubscriptionService;
this._mediaSettings = mediaSettings;
this._workflowMessageService = workflowMessageService;
this._localizationSettings = localizationSettings;
this._captchaSettings = captchaSettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
}
示例5: CustomerController
/// <summary>
/// Initializes a new instance of the <see cref="CustomerController"/> class.
/// </summary>
/// <param name="authenticationService">The authentication service.</param>
/// <param name="workContext">The work context.</param>
/// <param name="customerService">The customer service.</param>
/// <param name="webHelper">The web helper.</param>
/// <param name="customerRegistrationService">The customer registration service.</param>
public CustomerController(IAuthenticationService authenticationService,
IWorkContext workContext,
ICustomerService customerService,
IWebHelper webHelper, ICustomerRegistrationService customerRegistrationService)
{
this._authenticationService = authenticationService;
this._workContext = workContext;
this._customerService = customerService;
this._webHelper = webHelper;
_customerRegistrationService = customerRegistrationService;
}
示例6: CustomerController
public CustomerController(ICustomerService customerService,
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, 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)
{
this._customerService = customerService;
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._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;
}
示例7: NasService
public NasService()
{
_addressService = EngineContext.Current.Resolve<IAddressService>();
_countryService = EngineContext.Current.Resolve<ICountryService>();
_stateProvinceService = EngineContext.Current.Resolve<IStateProvinceService>();
_customerService = EngineContext.Current.Resolve<ICustomerService>();
_customerRegistrationService = EngineContext.Current.Resolve<ICustomerRegistrationService>();
_customerSettings = EngineContext.Current.Resolve<CustomerSettings>();
_permissionSettings = EngineContext.Current.Resolve<IPermissionService>();
_orderProcessingService = EngineContext.Current.Resolve<IOrderProcessingService>();
_orderService = EngineContext.Current.Resolve<IOrderService>();
_authenticationService = EngineContext.Current.Resolve<IAuthenticationService>();
_workContext = EngineContext.Current.Resolve<IWorkContext>();
_pluginFinder = EngineContext.Current.Resolve<IPluginFinder>();
}
示例8: ExternalAuthorizer
public ExternalAuthorizer(IAuthenticationService authenticationService,
IOpenAuthenticationService openAuthenticationService,
ICustomerRegistrationService customerRegistrationService,
ICustomerActivityService customerActivityService, ILocalizationService localizationService,
IWorkContext workContext, CustomerSettings customerSettings,
ExternalAuthenticationSettings externalAuthenticationSettings,
LocalizationSettings localizationSettings)
{
this._authenticationService = authenticationService;
this._openAuthenticationService = openAuthenticationService;
this._customerRegistrationService = customerRegistrationService;
this._customerActivityService = customerActivityService;
this._localizationService = localizationService;
this._workContext = workContext;
this._customerSettings = customerSettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
this._localizationSettings = localizationSettings;
}
示例9: ExternalAuthorizer
public ExternalAuthorizer(IAuthenticationService authenticationService,
IOpenAuthenticationService openAuthenticationService,
ICustomerService customerService,
ICustomerRegistrationService customerRegistrationService,
IWorkContext workContext, CustomerSettings customerSettings,
ExternalAuthenticationSettings externalAuthenticationSettings,
IShoppingCartService shoppingCartService,
IWorkflowMessageService workflowMessageService, LocalizationSettings localizationSettings)
{
this._authenticationService = authenticationService;
this._openAuthenticationService = openAuthenticationService;
this._customerService = customerService;
this._customerRegistrationService = customerRegistrationService;
this._workContext = workContext;
this._customerSettings = customerSettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
this._shoppingCartService = shoppingCartService;
this._workflowMessageService = workflowMessageService;
this._localizationSettings = localizationSettings;
}
示例10: CustomerAdminController
public CustomerAdminController(IPermissionService permissionService,
ICustomerService customerService,
CustomerSettings customerSettings,
ILocalizationService localizationService,
IDateTimeHelper dateTimeHelper,
DateTimeSettings dateTimeSettings,
IOpenAuthenticationService openAuthenticationService,
IGenericAttributeService genericAttributeService,
ICustomerActivityService customerActivityService,
ICustomerRegistrationService customerRegistrationService,
IWorkContext workContext)
{
this._permissionService = permissionService;
this._customerService = customerService;
this._customerSettings = customerSettings;
this._localizationService = localizationService;
this._dateTimeHelper = dateTimeHelper;
this._dateTimeSettings = dateTimeSettings;
this._openAuthenticationService = openAuthenticationService;
this._genericAttributeService = genericAttributeService;
this._customerActivityService = customerActivityService;
this._customerRegistrationService = customerRegistrationService;
this._workContext = workContext;
}
示例11: CustomerController
public CustomerController(IAuthenticationService authenticationService,
IDateTimeHelper dateTimeHelper,
DateTimeSettings dateTimeSettings,
TaxSettings taxSettings,
ILocalizationService localizationService,
IWorkContext workContext,
IStoreContext storeContext,
IStoreMappingService storeMappingService,
ICustomerService customerService,
ICustomerAttributeParser customerAttributeParser,
ICustomerAttributeService customerAttributeService,
IGenericAttributeService genericAttributeService,
ICustomerRegistrationService customerRegistrationService,
ITaxService taxService,
RewardPointsSettings rewardPointsSettings,
CustomerSettings customerSettings,
AddressSettings addressSettings,
ForumSettings forumSettings,
OrderSettings orderSettings,
IAddressService addressService,
ICountryService countryService,
IStateProvinceService stateProvinceService,
IOrderService orderService,
IPictureService pictureService,
INewsLetterSubscriptionService newsLetterSubscriptionService,
IShoppingCartService shoppingCartService,
IOpenAuthenticationService openAuthenticationService,
IDownloadService downloadService,
IWebHelper webHelper,
ICustomerActivityService customerActivityService,
IAddressAttributeParser addressAttributeParser,
IAddressAttributeService addressAttributeService,
IAddressAttributeFormatter addressAttributeFormatter,
IReturnRequestService returnRequestService,
IEventPublisher eventPublisher,
MediaSettings mediaSettings,
IWorkflowMessageService workflowMessageService,
LocalizationSettings localizationSettings,
CaptchaSettings captchaSettings,
SecuritySettings securitySettings,
ExternalAuthenticationSettings externalAuthenticationSettings,
StoreInformationSettings storeInformationSettings)
{
this._authenticationService = authenticationService;
this._dateTimeHelper = dateTimeHelper;
this._dateTimeSettings = dateTimeSettings;
this._taxSettings = taxSettings;
this._localizationService = localizationService;
this._workContext = workContext;
this._storeContext = storeContext;
this._storeMappingService = storeMappingService;
this._customerService = customerService;
this._customerAttributeParser = customerAttributeParser;
this._customerAttributeService = customerAttributeService;
this._genericAttributeService = genericAttributeService;
this._customerRegistrationService = customerRegistrationService;
this._taxService = taxService;
this._rewardPointsSettings = rewardPointsSettings;
this._customerSettings = customerSettings;
this._addressSettings = addressSettings;
this._forumSettings = forumSettings;
this._orderSettings = orderSettings;
this._addressService = addressService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._orderService = orderService;
this._pictureService = pictureService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._shoppingCartService = shoppingCartService;
this._openAuthenticationService = openAuthenticationService;
this._downloadService = downloadService;
this._webHelper = webHelper;
this._customerActivityService = customerActivityService;
this._addressAttributeParser = addressAttributeParser;
this._addressAttributeService = addressAttributeService;
this._addressAttributeFormatter = addressAttributeFormatter;
this._returnRequestService = returnRequestService;
this._eventPublisher = eventPublisher;
this._mediaSettings = mediaSettings;
this._workflowMessageService = workflowMessageService;
this._localizationSettings = localizationSettings;
this._captchaSettings = captchaSettings;
this._securitySettings = securitySettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
this._storeInformationSettings = storeInformationSettings;
}
示例12: 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,
IVendorService vendorService,
IStoreContext storeContext,
IPriceFormatter priceFormatter,
IOrderService orderService,
IExportManager exportManager,
ICustomerActivityService customerActivityService,
IBackInStockSubscriptionService backInStockSubscriptionService,
IPriceCalculationService priceCalculationService,
IProductAttributeFormatter productAttributeFormatter,
IPermissionService permissionService,
IQueuedEmailService queuedEmailService,
EmailAccountSettings emailAccountSettings,
IEmailAccountService emailAccountService,
ForumSettings forumSettings,
IForumService forumService,
IOpenAuthenticationService openAuthenticationService,
AddressSettings addressSettings,
IStoreService storeService,
ICustomerAttributeParser customerAttributeParser,
ICustomerAttributeService customerAttributeService,
IAddressAttributeParser addressAttributeParser,
IAddressAttributeService addressAttributeService,
IAddressAttributeFormatter addressAttributeFormatter,
IAffiliateService affiliateService,
IWorkflowMessageService workflowMessageService,
IRewardPointService rewardPointService)
{
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._vendorService = vendorService;
this._storeContext = storeContext;
this._priceFormatter = priceFormatter;
this._orderService = orderService;
this._exportManager = exportManager;
this._customerActivityService = customerActivityService;
this._backInStockSubscriptionService = backInStockSubscriptionService;
this._priceCalculationService = priceCalculationService;
this._productAttributeFormatter = productAttributeFormatter;
this._permissionService = permissionService;
this._queuedEmailService = queuedEmailService;
this._emailAccountSettings = emailAccountSettings;
this._emailAccountService = emailAccountService;
this._forumSettings = forumSettings;
this._forumService = forumService;
this._openAuthenticationService = openAuthenticationService;
this._addressSettings = addressSettings;
this._storeService = storeService;
this._customerAttributeParser = customerAttributeParser;
this._customerAttributeService = customerAttributeService;
this._addressAttributeParser = addressAttributeParser;
this._addressAttributeService = addressAttributeService;
this._addressAttributeFormatter = addressAttributeFormatter;
this._affiliateService = affiliateService;
this._workflowMessageService = workflowMessageService;
this._rewardPointService = rewardPointService;
}
示例13: AccountController
public AccountController(IAuthenticationService authenticationService,
IDateTimeHelper dateTimeHelper,
DateTimeSettings dateTimeSettings,
TaxSettings taxSettings,
ILocalizationService localizationService,
IWorkContext workContext,
IStoreContext storeContext,
IStoreMappingService storeMappingService,
ICustomerService customerService,
ICustomerAttributeParser customerAttributeParser,
ICustomerAttributeService customerAttributeService,
IGenericAttributeService genericAttributeService,
ICustomerRegistrationService customerRegistrationService,
ITaxService taxService,
RewardPointsSettings rewardPointsSettings,
CustomerSettings customerSettings,
AddressSettings addressSettings,
ForumSettings forumSettings,
OrderSettings orderSettings,
IAddressService addressService,
ICountryService countryService,
IStateProvinceService stateProvinceService,
IOrderService orderService,
IPictureService pictureService,
INewsLetterSubscriptionService newsLetterSubscriptionService,
IShoppingCartService shoppingCartService,
IOpenAuthenticationService openAuthenticationService,
IDownloadService downloadService,
IWebHelper webHelper,
ICustomerActivityService customerActivityService,
IAddressAttributeParser addressAttributeParser,
IAddressAttributeService addressAttributeService,
IAddressAttributeFormatter addressAttributeFormatter,
MediaSettings mediaSettings,
IWorkflowMessageService workflowMessageService,
LocalizationSettings localizationSettings,
CaptchaSettings captchaSettings,
SecuritySettings securitySettings,
ExternalAuthenticationSettings externalAuthenticationSettings,
IMultitenantService vendorService,
IGroupDealService groupDealService,
ICategoryService categoryService,
IVendorAddressService vendorAddressService,
IProductService productService,
IStoreService storeService,
StoreInformationSettings storeInformationSettings)
{
this._authenticationService = authenticationService;
this._dateTimeHelper = dateTimeHelper;
this._dateTimeSettings = dateTimeSettings;
this._taxSettings = taxSettings;
this._localizationService = localizationService;
this._workContext = workContext;
this._storeContext = storeContext;
this._storeMappingService = storeMappingService;
this._customerService = customerService;
this._customerAttributeParser = customerAttributeParser;
this._customerAttributeService = customerAttributeService;
this._genericAttributeService = genericAttributeService;
this._customerRegistrationService = customerRegistrationService;
this._taxService = taxService;
this._rewardPointsSettings = rewardPointsSettings;
this._customerSettings = customerSettings;
this._addressSettings = addressSettings;
this._forumSettings = forumSettings;
this._orderSettings = orderSettings;
this._addressService = addressService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._orderService = orderService;
this._pictureService = pictureService;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._shoppingCartService = shoppingCartService;
this._openAuthenticationService = openAuthenticationService;
this._downloadService = downloadService;
this._webHelper = webHelper;
this._customerActivityService = customerActivityService;
this._addressAttributeParser = addressAttributeParser;
this._addressAttributeService = addressAttributeService;
this._addressAttributeFormatter = addressAttributeFormatter;
this._mediaSettings = mediaSettings;
this._workflowMessageService = workflowMessageService;
this._localizationSettings = localizationSettings;
this._captchaSettings = captchaSettings;
this._securitySettings = securitySettings;
this._externalAuthenticationSettings = externalAuthenticationSettings;
this._categories = new System.Collections.Generic.List<DTOs.Category>();
this._vendorService = vendorService;
this._groupDealService = groupDealService;
this._categoryService = categoryService;
this._vendorAddressService = vendorAddressService;
this._productService = productService;
this._storeService = storeService;
this._storeInformationSettings = storeInformationSettings;
}
示例14: SetUp
public new void SetUp()
{
_customerSettings = new CustomerSettings();
_securitySettings = new SecuritySettings()
{
EncryptionKey = "273ece6f97dd844d"
};
_rewardPointsSettings = new RewardPointsSettings()
{
Enabled = false,
};
_encryptionService = new EncryptionService(_securitySettings);
_customerRepo = MockRepository.GenerateMock<IRepository<Customer>>();
var customer1 = new Customer()
{
Username = "[email protected]",
Email = "[email protected]",
PasswordFormat = PasswordFormat.Hashed,
Active = true
};
string saltKey = _encryptionService.CreateSaltKey(5);
string password = _encryptionService.CreatePasswordHash("password", saltKey);
customer1.PasswordSalt = saltKey;
customer1.Password = password;
AddCustomerToRegisteredRole(customer1);
var customer2 = new Customer()
{
Username = "[email protected]",
Email = "[email protected]",
PasswordFormat = PasswordFormat.Clear,
Password = "password",
Active = true
};
AddCustomerToRegisteredRole(customer2);
var customer3 = new Customer()
{
Username = "[email protected]",
Email = "[email protected]",
PasswordFormat = PasswordFormat.Encrypted,
Password = _encryptionService.EncryptText("password"),
Active = true
};
AddCustomerToRegisteredRole(customer3);
var customer4 = new Customer()
{
Username = "[email protected]",
Email = "[email protected]",
PasswordFormat = PasswordFormat.Clear,
Password = "password",
Active = true
};
AddCustomerToRegisteredRole(customer4);
var customer5 = new Customer()
{
Username = "[email protected]",
Email = "[email protected]",
PasswordFormat = PasswordFormat.Clear,
Password = "password",
Active = true
};
_eventPublisher = MockRepository.GenerateMock<IEventPublisher>();
_eventPublisher.Expect(x => x.Publish(Arg<object>.Is.Anything));
_customerRepo.Expect(x => x.Table).Return(new List<Customer>() { customer1, customer2, customer3, customer4, customer5 }.AsQueryable());
_customerRoleRepo = MockRepository.GenerateMock<IRepository<CustomerRole>>();
_genericAttributeRepo = MockRepository.GenerateMock<IRepository<GenericAttribute>>();
_genericAttributeService = MockRepository.GenerateMock<IGenericAttributeService>();
_newsLetterSubscriptionService = MockRepository.GenerateMock<INewsLetterSubscriptionService>();
_localizationService = MockRepository.GenerateMock<ILocalizationService>();
_customerService = new CustomerService(new NopNullCache(), _customerRepo, _customerRoleRepo,
_genericAttributeRepo, _genericAttributeService, _eventPublisher, _customerSettings);
_customerRegistrationService = new CustomerRegistrationService(_customerService,
_encryptionService, _newsLetterSubscriptionService, _localizationService,
_rewardPointsSettings, _customerSettings);
}