17 lines
370 B
C#
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);
|
|
}
|
|
}
|