17 lines
398 B
C#
17 lines
398 B
C#
|
|
using Microsoft.Extensions.Caching.Memory;
|
|||
|
|
|
|||
|
|
namespace BLWLogProduce.Services
|
|||
|
|
{
|
|||
|
|
public class MyCache
|
|||
|
|
{
|
|||
|
|
public IConfiguration Configuration { get; set; }
|
|||
|
|
public IMemoryCache _Cache { get; set; }
|
|||
|
|
|
|||
|
|
public MyCache(IConfiguration configuration, IMemoryCache cache)
|
|||
|
|
{
|
|||
|
|
this.Configuration = configuration;
|
|||
|
|
_Cache = cache;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|