Files
ISEbd-21_Savelyev.P.Y._Proj…/ProjectSellPC/ProjectSellPC/Repos/IProductRepository.cs
2024-12-20 09:27:19 +04:00

14 lines
297 B
C#

using ProjectSellPC.Entites;
namespace ProjectSellPC.Repos
{
public interface IProductRepository
{
IEnumerable<Product> ReadAll();
Product Read(int id);
void Create(Product product);
Product Update(Product product);
void Delete(int id);
}
}