Beispiel #1
0
 public DeleteGUIDCommandHandler(WMDbContext context, IDistributedCache distributedCache)
 {
     _context          = context;
     _distributedCache = distributedCache;
 }
Beispiel #2
0
 public GetGUIDQueryHandler(WMDbContext context, IDistributedCache distributedCache)
 {
     _context = context;
     //_mapper = mapper;
     _distributedCache = distributedCache;
 }
Beispiel #3
0
 public CreateGUIDCommandHandler(WMDbContext context, IDistributedCache cache)
 {
     _context = context;
     _cache   = cache;
 }