20 lines
393 B
C#
Raw Normal View History

2024-11-13 23:20:06 +04:00
using GasStation.Entities;
namespace GasStation.Repositories.Implementations;
public class SellingRepository : ISellingRepository
{
public void CreateSelling(Selling selling)
{
}
2024-12-02 14:38:24 +04:00
public void DeleteSelling(int id)
{
}
public IEnumerable<Selling> ReadSelling(DateTime? dateTime = null, int? count = null, int? gasmanID = null)
2024-11-13 23:20:06 +04:00
{
return [];
}
}