Esempio n. 1
0
 public AutenticaApplication(IAutenticaRepository autenticaRepository,
                             ITokenApplication tokenService,
                             IPasswordHasherServices passwordHasher)
 {
     _autenticaRepository = autenticaRepository;
     _tokenService        = tokenService;
     _passwordHasher      = passwordHasher;
 }
Esempio n. 2
0
 public AutenticaRepository(IPasswordHasherServices passwordHasher, BancoContext context)
 {
     _context        = context;
     _passwordHasher = passwordHasher;
 }