ISEbd-22_Rozhkov.I.E._Simple/GasStation/Repositories/Implementations/SupplyRepository.cs

20 lines
395 B
C#
Raw Normal View History

2024-11-13 23:20:06 +04:00
using GasStation.Entities;
namespace GasStation.Repositories.Implementations;
public class SupplyRepository : ISupplyRepository
{
public void CreateSelling(Supply supply)
{
}
public void DeleteSelling(int id)
{
}
public IEnumerable<Supply> ReadSupply(DateTime? supplyDate = null, int? supplierID = null, int? productID = null)
{
return [];
}
}