Ejemplo n.º 1
0
 public AuthenticationService(IReadonlyAuthenticationRepository readonlyAuthenticationRepository)
 {
     _readonlyAuthenticationRepository = readonlyAuthenticationRepository;
 }
Ejemplo n.º 2
0
 public LoginQueryHandler(IMapper mapper, IReadonlyAuthenticationRepository readonlyAuthenticationRepository, ITokenGenerator tokenGenerator)
 {
     _mapper = mapper;
     _readonlyAuthenticationRepository = readonlyAuthenticationRepository;
     _tokenGenerator = tokenGenerator;
 }