13 lines
308 B
C#
13 lines
308 B
C#
using GasStation.Entities;
|
|
|
|
namespace GasStation.Repositories;
|
|
|
|
public interface ISupplyRepository
|
|
{
|
|
IEnumerable<Supply> ReadSupply(DateTime? supplyDate = null, int? supplierID = null, int? productID = null, int? count = null);
|
|
|
|
void CreateSupply(Supply supply);
|
|
|
|
void DeleteSupply(int id);
|
|
}
|