using Autofac;
|
using Rhea.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.IBusiness
|
{
|
public interface IDbCacheBus
|
{
|
public void StartAutoUpdate();
|
|
public void StopAutoUpdate();
|
public ISysParamCache GetSysParamCache();
|
public ICodeRuleCache GetCodeRuleCache();
|
}
|
}
|