16 lines
365 B
C#
16 lines
365 B
C#
using GasStation.Entities;
|
|
|
|
namespace GasStation.Repositories.Implementations;
|
|
|
|
public class SellingRepository : ISellingRepository
|
|
{
|
|
public void CreateSelling(Selling selling)
|
|
{
|
|
}
|
|
|
|
public IEnumerable<Selling> ReadSelling(DateTime? dateTime = null, int? count = null, int? productID = null, int? gasmanID = null)
|
|
{
|
|
return [];
|
|
}
|
|
}
|