20 lines
395 B
C#
20 lines
395 B
C#
|
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 [];
|
|||
|
}
|
|||
|
}
|