using ProjectGarage.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProjectGarage.Repositories; public interface IRouteRepository { IEnumerable ReadRoute(string? startPoint = null,string? finalPoint = null); Route ReadRouteByID(int id); void CreateRoute(Route route); void UpdateRoute(Route route); void DeleteRoute(int id); }