Beispiel #1
0
 public ClientUserRegisterHandler(ICustomerService customerService, ISecurePasswordHasherService securePasswordHasherService, IMapper mapper)
 {
     _customerService             = customerService;
     _securePasswordHasherService = securePasswordHasherService;
     _mapper = mapper;
 }
Beispiel #2
0
 public CustomerService(IRepository <Customer> customerRepository, ISecurePasswordHasherService securePasswordHasherService)
 {
     _customerRepository          = customerRepository;
     _securePasswordHasherService = securePasswordHasherService;
 }