Exemplo n.º 1
0
        public CachedUserDatabaseAccessService(IMemoryCache cache, LiepaDemoDatabaseContext databaseContext, TimeSpan cacheExpirationTime)
        {
            _cache           = cache;
            _databaseContext = databaseContext;

            _cacheOptions = new MemoryCacheEntryOptions()
                            .SetAbsoluteExpiration(relative: cacheExpirationTime);
        }
Exemplo n.º 2
0
 public CachedUserDatabaseAccessService(IMemoryCache cache, LiepaDemoDatabaseContext databaseContext) :
     this(cache, databaseContext, TimeSpan.FromMinutes(10))
 {
 }