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 RouteRepository : IRouteRepository { public void CreateFuelReplenishment(FuelReplenishment fuelReplenishment) { } public void CreateRoute(Route route) { } public void DeleteRoute(int id) { } public void ReadRouteByID(int id) => Route.CreateRoute(0, string.Empty, string.Empty, 0); public IEnumerable ReadRoute(string? startPoint = null, string? finalPoint = null) { return []; } public void UpdateRoute(Route route) { } }