public AuthenticationServiceVerifier(IAuthenticationServiceRepository authenticationServiceRepository,
                                      IAuthenticationServiceMapper authenticationServiceMapper,
                                      IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceRepository = authenticationServiceRepository;
     this.authenticationServiceMapper     = authenticationServiceMapper;
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }
Beispiel #2
0
 public AuthenticationServiceProcessors(IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }
 public AuthenticationServiceValidator(IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }