You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
490 B

using Common.Const;
using HybirdFrameworkCore.Autofac.Attribute;
using NewLife.Caching;
using Repository.System;
namespace Service.Mgr
{
[Scope("SingleInstance")]
public class SysConfigMgr
{
private readonly SysConfigRepository _sysConfigRep;
private readonly ICache _cache;
public SysConfigMgr(SysConfigRepository sysConfigRepository)
{
_sysConfigRep = sysConfigRepository;
_cache = Cache.Default;
}
}
}