using ProjectFuel.Entities; using ProjectFuel.Entities; namespace ProjectFuel.Repositories; public interface IRefillRepository { IEnumerable ReadRefills(DateTime? dateFrom = null, DateTime? dateTo = null, int? fuelId = null, int? carId = null); void CreateRefill(Refill refill); }