Beispiel #1
0
 public Handler(IPhotoBrowserContext context)
 {
     _context = context;
 }
 public AddOrUpdateDigitalAssetHandler(IPhotoBrowserContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #3
0
 public GetDigitalAssetByIdHandler(IPhotoBrowserContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #4
0
 public Handler(IPhotoBrowserContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #5
0
 public RemoveDigitalAssetHandler(IPhotoBrowserContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Beispiel #6
0
 public UserManager(IPhotoBrowserContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public Handler(IPhotoBrowserContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }
Beispiel #8
0
 public Handler(IPhotoBrowserContext context, IEventBus bus)
 {
     _context = context;
 }