refactor core presenters

This commit is contained in:
2025-12-19 19:42:19 +01:00
parent 8116fe888f
commit 94fc538f44
228 changed files with 2817 additions and 3097 deletions

View File

@@ -18,6 +18,11 @@ export interface IRaceRegistrationRepository {
*/
getRegisteredDrivers(raceId: string): Promise<string[]>;
/**
* Get all registrations for a race.
*/
findByRaceId(raceId: string): Promise<RaceRegistration[]>;
/**
* Get the number of registrations for a race.
*/