12 lines
303 B
C#
Raw Normal View History

2024-12-23 11:33:05 +04:00
using ProjectFuel.Entities;
using ProjectFuel.Entities;
namespace ProjectFuel.Repositories;
public interface IRefillRepository
{
IEnumerable<Refill> ReadRefills(DateTime? dateFrom = null, DateTime? dateTo = null, int? fuelId = null, int? carId = null);
void CreateRefill(Refill refill);
}