using ProjectFuel.Entities; using ProjectFuel.Entities; namespace ProjectFuel.Repositories; public interface IRouteRepository { IEnumerable ReadRoutes(); Route ReadRouteByID(int id); void CreateRoute(Route route); void UpdateRoute(Route route); void DeleteRoute(int id); }