2024-12-02 14:38:24 +04:00

20 lines
393 B
C#

using GasStation.Entities;
namespace GasStation.Repositories.Implementations;
public class SellingRepository : ISellingRepository
{
public void CreateSelling(Selling selling)
{
}
public void DeleteSelling(int id)
{
}
public IEnumerable<Selling> ReadSelling(DateTime? dateTime = null, int? count = null, int? gasmanID = null)
{
return [];
}
}