13 lines
291 B
C#
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);
|
|
}
|