コード例 #1
0
 public AutenticaApplication(IAutenticaRepository autenticaRepository,
                             ITokenApplication tokenService,
                             IPasswordHasherServices passwordHasher)
 {
     _autenticaRepository = autenticaRepository;
     _tokenService        = tokenService;
     _passwordHasher      = passwordHasher;
 }
コード例 #2
0
 public AutenticaRepository(IPasswordHasherServices passwordHasher, BancoContext context)
 {
     _context        = context;
     _passwordHasher = passwordHasher;
 }