using ProjectGarage.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProjectGarage.Repositories.Implementations; public class FuelReplishmentRepository : IReplenishmentRepository { public void CreateFuelReplenishment(FuelReplenishment fuelReplenishment) { } public void DeleteFuelReplenishment(int id) { } public IEnumerable ReadFuelReplenishment(DateTime? dateForm = null, DateTime? dateTo = null, int? fuelId = null, int? driverId = null, int? routeId = null) { return []; } }