public RemoveDigitalAssetHandler(IProposeContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #2
0
 public GetDigitalAssetByIdHandler(IProposeContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #3
0
 public AuthenticateHandler(IProposeContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }
 public GetClaimsForUserHandler(IProposeContext context)
 {
     _context = context;
 }
 public GetUserByUsernameHandler(IProposeContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public AddOrUpdateDigitalAssetHandler(IProposeContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #7
0
 public UserManager(IProposeContext context)
 {
     _context = context;
 }