12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- namespace Cache
- {
-
-
-
- public interface ICache
- {
-
-
-
-
-
- T GetCache<T>(string cacheKey) where T : class;
-
-
-
-
-
- void WriteCache<T>(T value, string cacheKey) where T : class;
-
-
-
-
-
-
- void WriteCache<T>(T value, string cacheKey, DateTime expireTime) where T : class;
-
-
-
-
- void RemoveCache(string cacheKey);
-
-
-
- void RemoveCache();
- }
- }
|