NullIwbCacheManager.cs 290 B

1234567891011
  1. using Abp.Runtime.Caching;
  2. namespace IwbZero.Runtime.Caching
  3. {
  4. public sealed class NullIwbCacheManager : IIwbCacheManager
  5. {
  6. public static NullIwbCacheManager Instance { get; } = new NullIwbCacheManager();
  7. public ICacheManager Cache { get; set; }
  8. }
  9. }