public AuthenticationServiceVerifier(IAuthenticationServiceRepository authenticationServiceRepository,
                                      IAuthenticationServiceMapper authenticationServiceMapper,
                                      IAuthenticationServiceErrorCodes authenticationServiceErrorCodes)
 {
     this.authenticationServiceRepository = authenticationServiceRepository;
     this.authenticationServiceMapper     = authenticationServiceMapper;
     this.authenticationServiceErrorCodes = authenticationServiceErrorCodes;
 }
 public AuthenticationService(IAuthenticationServiceMapper authenticationServiceMapper,
                              IAuthenticationServicePostProcessors authenticationServicePostProcessors,
                              IAuthenticationServiceProcessors authenticationServiceProcessors,
                              IAuthenticationServiceValidator authenticationServiceValidator,
                              IAuthenticationServiceVerifier authenticationServiceVerifier)
 {
     this.authenticationServiceMapper         = authenticationServiceMapper;
     this.authenticationServicePostProcessors = authenticationServicePostProcessors;
     this.authenticationServiceProcessors     = authenticationServiceProcessors;
     this.authenticationServiceValidator      = authenticationServiceValidator;
     this.authenticationServiceVerifier       = authenticationServiceVerifier;
 }