using System; using System.Collections.Generic; namespace iiie.CacheControl.Business.OutputCache { public class FileOuputCache : IOutputCache { public void RemoveStartsWith(string key) { throw new NotImplementedException(); } public T Get(string key) where T : class { throw new NotImplementedException(); } public object Get(string key) { throw new NotImplementedException(); } public void Remove(string key) { throw new NotImplementedException(); } public bool Contains(string key) { throw new NotImplementedException(); } public void Add(string key, object o, string dependsOnKey = null) { throw new NotImplementedException(); } public IEnumerable AllKeys { get; private set; } } }