diff options
Diffstat (limited to 'Models/IRepository.cs')
-rw-r--r-- | Models/IRepository.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Models/IRepository.cs b/Models/IRepository.cs new file mode 100644 index 0000000..363f48d --- /dev/null +++ b/Models/IRepository.cs @@ -0,0 +1,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(); + } +}
\ No newline at end of file |