コード例 #1
0
 public ClientUserRegisterHandler(ICustomerService customerService, ISecurePasswordHasherService securePasswordHasherService, IMapper mapper)
 {
     _customerService             = customerService;
     _securePasswordHasherService = securePasswordHasherService;
     _mapper = mapper;
 }
コード例 #2
0
ファイル: CustomerService.cs プロジェクト: OmerCD/SkyPayment
 public CustomerService(IRepository <Customer> customerRepository, ISecurePasswordHasherService securePasswordHasherService)
 {
     _customerRepository          = customerRepository;
     _securePasswordHasherService = securePasswordHasherService;
 }