using System; namespace Zhaizj.Framework.Caching { public interface IApplicationCache { object Get( string key ); void Put( string key, object val ); void Put( string key, object val, int minutes ); void Remove( string key ); } }