Beispiel #1
0
 public UserLoginInteractor(IDatabase database, IUserViewMapper userMapper, IPasswordHasher passwordHasher, IAuthenticationTokenHandler tokenHandler)
 {
     this.database       = database;
     this.userMapper     = userMapper;
     this.passwordHasher = passwordHasher;
     this.tokenHandler   = tokenHandler;
 }