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