ISEbd-22_Rozhkov.I.E._Simple/GasStation/Repositories/Implementations/SellingRepository.cs
2024-11-13 23:20:06 +04:00

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 [];
}
}