1234567891011 |
- using System;
- namespace Bowin.Common.Cache
- {
- public interface ICacheProvider
- {
- object Add(string key, object entry, DateTime utcExpiry);
- object Get(string key);
- void Remove(string key);
- void Set(string key, object entry, DateTime utcExpiry);
- }
- }
|