blob: 363f48d650e6ae0a2018e7efd1aaf4a15f37579c (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace MyDarling.Models
{
public interface IRepository
{
public IQueryable<UnderwearBundle> Bundles { get; }
public void Add(UnderwearBundle b);
public void Remove(UnderwearBundle p);
public void Save();
}
}
|