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