Exemple #1
0
 public AutenticaApplication(IAutenticaRepository autenticaRepository,
                             ITokenApplication tokenService,
                             IPasswordHasherServices passwordHasher)
 {
     _autenticaRepository = autenticaRepository;
     _tokenService        = tokenService;
     _passwordHasher      = passwordHasher;
 }
Exemple #2
0
 public AuthController(
     IUserApplication userApplication,
     IAuthApplication authApplication,
     ITokenApplication tokenApplication,
     IMapper mapper)
 {
     this._authApplication  = authApplication;
     this._userApplication  = userApplication;
     this._tokenApplication = tokenApplication;
     this._mapper           = mapper;
 }