0
0
MyDarling/Models/IRepository.cs
2023-02-16 07:23:48 +03:00

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();
}
}