rename ISystem to IPassioSystem

This commit is contained in:
2025-04-06 10:50:51 -07:00
parent 6d762ce620
commit 940d172e87
15 changed files with 31 additions and 38 deletions

View File

@@ -1,8 +1,6 @@
import { IEta, IOrderedStop, IRoute, IShuttle, IStop, ISystem } from "../entities/entities";
import { IEta, IOrderedStop, IRoute, IShuttle, IStop } from "../entities/entities";
export interface ShuttleGetterRepository {
getSystemIfExists(): Promise<ISystem | null>;
getStopsBySystemId(systemId: string): Promise<IStop[]>;
getStopById(stopId: string): Promise<IStop | null>;