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

12 lines
256 B
C#

using GasStation.Entities;
namespace GasStation.Repositories;
public interface ISellingRepository
{
IEnumerable<Selling> ReadSelling(DateTime? dateTime = null, int? count = null, int? gasmanID = null);
void CreateSelling(Selling selling);
}