Exemple #1
0
 public SaveCustomerHashes(IMapperProvider mapperProvider,
                           IEncryptionProvider encryptionProvider,
                           ICharacterHashService characterHashService,
                           ICustomerHashService customerHashService,
                           ApplicationSettings applicationSettings) : base(mapperProvider, encryptionProvider)
 {
     _characterHashService = characterHashService;
     _customerHashService  = customerHashService;
     _hashes = applicationSettings.GetHashes();
 }
 public CustomerSaved(IClockProvider clockProvider, ICustomerService customerService, ICharacterHashService characterHashService)
 {
     _clockProvider        = clockProvider;
     _customerService      = customerService;
     _characterHashService = characterHashService;
 }