Beispiel #1
0
 public CacheService(IMemoryCache cache, TestAppDbContext context)
 {
     this.Cache   = cache;
     this.Context = context;
 }
Beispiel #2
0
 public GenericCacheService(TestAppDbContext context, IMemoryCache cache)
 {
     _context = context;
     _cache   = cache;
 }