diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-16 08:05:29 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-16 08:05:29 +0300 |
commit | a27cab13210345f094b27b51bbc05fbe4e3ba483 (patch) | |
tree | d39611f42a96607e6e8ccf0592270e00212c3cd3 /Models/IRepository.cs | |
parent | 305d3070ec8b66107eb0327e0a029aa74e197d3a (diff) | |
parent | af72b18ba097310f55152ee0f1654fe4df6dea89 (diff) |
Merge branch 'di'
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 |