0
0
MyDarling/Models/IRepository.cs

10 lines
222 B
C#
Raw Normal View History

2023-02-16 07:23:48 +03:00
namespace MyDarling.Models
{
public interface IRepository
{
public IQueryable<UnderwearBundle> Bundles { get; }
public void Add(UnderwearBundle b);
public void Remove(UnderwearBundle p);
public void Save();
}
}