10 lines
222 B
C#
10 lines
222 B
C#
namespace MyDarling.Models
|
|
{
|
|
public interface IRepository
|
|
{
|
|
public IQueryable<UnderwearBundle> Bundles { get; }
|
|
public void Add(UnderwearBundle b);
|
|
public void Remove(UnderwearBundle p);
|
|
public void Save();
|
|
}
|
|
} |