Files
gridpilot.gg/apps/website/lib/presenters/AllRacesPagePresenter.ts
2025-12-12 01:11:36 +01:00

21 lines
503 B
TypeScript

import type {
IAllRacesPagePresenter,
AllRacesPageResultDTO,
AllRacesPageViewModel,
} from '@gridpilot/racing/application/presenters/IAllRacesPagePresenter';
export class AllRacesPagePresenter implements IAllRacesPagePresenter {
private viewModel: AllRacesPageViewModel | null = null;
reset(): void {
this.viewModel = null;
}
present(dto: AllRacesPageResultDTO): void {
this.viewModel = dto;
}
getViewModel(): AllRacesPageViewModel | null {
return this.viewModel;
}
}