Files
ISEbd-21_Savelyev.P.Y._Proj…/ProjectSellPC/ProjectSellPC/Repos/IProductInChequeRepository.cs
2024-12-22 17:03:53 +04:00

17 lines
370 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ProjectSellPC.Entites;
namespace ProjectSellPC.Repos
{
public interface IProductInChequeRepository
{
IEnumerable<ProductInCheque> ReadAll();
ProductInCheque Read(int id);
void Create(ProductInCheque ps);
}
}