public AutenticaService(IAutenticaRepository autenticaRepository,
                         ITokenService tokenService,
                         IPasswordHasher passwordHasher)
 {
     _autenticaRepository = autenticaRepository;
     _tokenService        = tokenService;
     _passwordHasher      = passwordHasher;
 }
Exemple #2
0
 public AutenticaApplication(IAutenticaRepository autenticaRepository,
                             ITokenApplication tokenService,
                             IPasswordHasherServices passwordHasher)
 {
     _autenticaRepository = autenticaRepository;
     _tokenService        = tokenService;
     _passwordHasher      = passwordHasher;
 }