コード例 #1
0
 public AuthenticationServiceVerifier(IAuthenticationServiceRepository authenticationServiceRepository,
                                      IAuthenticationServiceMapper authenticationServiceMapper,
                                      IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceRepository = authenticationServiceRepository;
     this.authenticationServiceMapper     = authenticationServiceMapper;
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }
コード例 #2
0
 public AuthenticationServiceProcessors(IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }
コード例 #3
0
 public AuthenticationServiceValidator(IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }