This commit is contained in:
2025-12-13 11:43:09 +01:00
parent 4b6fc668b5
commit bb0497f429
38 changed files with 3838 additions and 55 deletions

View File

@@ -0,0 +1,13 @@
import type { Session } from '../entities/Session';
export interface ISessionRepository {
findById(id: string): Promise<Session | null>;
findAll(): Promise<Session[]>;
findByRaceEventId(raceEventId: string): Promise<Session[]>;
findByLeagueId(leagueId: string): Promise<Session[]>;
findByStatus(status: string): Promise<Session[]>;
create(session: Session): Promise<Session>;
update(session: Session): Promise<Session>;
delete(id: string): Promise<void>;
exists(id: string): Promise<boolean>;
}