Exemplo n.º 1
0
        protected static void RemoveObjectFromCache(ICachable cache, string keyPrefix, int id)
        {
            string key = GetKey(keyPrefix, id);

            cache.Remove(key);
        }