add TODO to be resolved before merge

This commit is contained in:
2025-04-07 13:57:14 -07:00
parent 059a9f5067
commit 4f7d24acf0

View File

@@ -1,6 +1,7 @@
import { IEta, IOrderedStop, IRoute, IShuttle, IStop } from "../entities/entities"; import { IEta, IOrderedStop, IRoute, IShuttle, IStop } from "../entities/entities";
export interface ShuttleGetterRepository { export interface ShuttleGetterRepository {
// TODO: Remove system ID argument from all getters
getStopsBySystemId(systemId: string): Promise<IStop[]>; getStopsBySystemId(systemId: string): Promise<IStop[]>;
getStopById(stopId: string): Promise<IStop | null>; getStopById(stopId: string): Promise<IStop | null>;