Esempio n. 1
0
 public TokenAuthenticationService(IUserManagementService service, IOptions <TokenManagement> tokenManagement, IConfiguration config, IzDbContext db)
 {
     _userManagementService = service;
     _tokenManagement       = tokenManagement.Value;
     _config = config;
     _db     = db;
 }
Esempio n. 2
0
 public UserManagementService(IzDbContext db, IConfiguration config)
 {
     _db     = db;
     _config = config;
 }