mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 16:00:32 +00:00
add method stubs to remove data by id
This commit is contained in:
@@ -148,6 +148,24 @@ export class UnoptimizedInMemoryRepository implements GetterSetterRepository {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public async removeEta(shuttleId: string, stopId: string): Promise<void> {
|
||||
}
|
||||
|
||||
public async removeOrderedStop(stopId: string, routeId: string): Promise<void> {
|
||||
}
|
||||
|
||||
public async removeRoute(routeId: string): Promise<void> {
|
||||
}
|
||||
|
||||
public async removeShuttle(shuttleId: string): Promise<void> {
|
||||
}
|
||||
|
||||
public async removeStop(stopId: string): Promise<void> {
|
||||
}
|
||||
|
||||
public async removeSystem(systemId: string): Promise<void> {
|
||||
}
|
||||
public async clearSystemData() {
|
||||
this.systems = [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user