namespace MyDarling.Models { public interface IRepository { public IQueryable Bundles { get; } public void Add(UnderwearBundle b); public void Remove(UnderwearBundle p); public void Save(); } }