ISEbd-22_Rozhkov.I.E._Simple/GasStation/Repositories/ISupplyRepository.cs
2024-11-13 23:20:06 +04:00

13 lines
291 B
C#

using GasStation.Entities;
namespace GasStation.Repositories;
public interface ISupplyRepository
{
IEnumerable<Supply> ReadSupply(DateTime? supplyDate = null, int? supplierID = null, int? productID = null);
void CreateSelling(Supply supply);
void DeleteSelling(int id);
}