website refactor
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { ISeasonRepository } from '@core/racing/domain/repositories/ISeasonRepository';
|
||||
import { SeasonRepository } from '@core/racing/domain/repositories/SeasonRepository';
|
||||
import { Season } from '@core/racing/domain/entities/season/Season';
|
||||
import { Logger } from '@core/shared/application';
|
||||
import { Logger } from '@core/shared/domain';
|
||||
|
||||
export class InMemorySeasonRepository implements ISeasonRepository {
|
||||
export class InMemorySeasonRepository implements SeasonRepository {
|
||||
private seasons: Map<string, Season> = new Map(); // Key: seasonId
|
||||
|
||||
constructor(private readonly logger: Logger) {
|
||||
|
||||
Reference in New Issue
Block a user