14 lines
508 B
TypeScript
14 lines
508 B
TypeScript
import type { ILeagueSchedulePreviewPresenter } from '@racing/application/presenters/ILeagueSchedulePreviewPresenter';
|
|
import type { LeagueSchedulePreviewDTO } from '@racing/application/dto/LeagueScheduleDTO';
|
|
|
|
export class LeagueSchedulePreviewPresenter implements ILeagueSchedulePreviewPresenter {
|
|
private data: LeagueSchedulePreviewDTO | null = null;
|
|
|
|
present(data: LeagueSchedulePreviewDTO): void {
|
|
this.data = data;
|
|
}
|
|
|
|
getData(): LeagueSchedulePreviewDTO | null {
|
|
return this.data;
|
|
}
|
|
} |