using NetAdmin.Cache;
using NetAdmin.SysComponent.Application.Services.Sys.Dependency;
using NetAdmin.SysComponent.Cache.Sys.Dependency;
namespace NetAdmin.SysComponent.Cache.Sys;
///
public sealed class ConstantCache(IDistributedCache cache, IConstantService service) //
: DistributedCache(cache, service), IScoped, IConstantCache
{
///
public IDictionary GetCharsDic()
{
return Service.GetCharsDic();
}
///
public IDictionary> GetEnums()
{
return Service.GetEnums();
}
///
public IDictionary GetLocalizedStrings()
{
return Service.GetLocalizedStrings();
}
///
public IDictionary GetNumbersDic()
{
return Service.GetNumbersDic();
}
}