- using Abp.Dependency;
- using Abp.Runtime.Caching;
- namespace IwbZero.Runtime.Caching
- {
- public class IwbCacheManager:IIwbCacheManager, ISingletonDependency
- {
- public IwbCacheManager(ICacheManager cache)
- {
- Cache = cache;
- }
- public ICacheManager Cache { get; set; }
- }
- }
|