ISEbd-22_Rozhkov.I.E._Simple/GasStation/Repositories/ISellingRepository.cs

13 lines
288 B
C#
Raw Normal View History

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