using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Wox.Infrastructure.Storage { public interface IRepository { void Add(T insertedItem); void Remove(T removedItem); bool Contains(T item); void Set(IList list); bool Any(); } }