public GetClaimsForUserHandler(IVendorCollectionContext context)
 {
     _context = context;
 }
 public AuthenticateHandler(IVendorCollectionContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }
Пример #3
0
 public GetUserByUsernameHandler(IVendorCollectionContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public UserManager(IVendorCollectionContext context)
 {
     _context = context;
 }