fix issues in core

This commit is contained in:
2025-12-23 11:25:08 +01:00
parent 1efd971032
commit 2854ae3c5c
113 changed files with 1142 additions and 458 deletions

View File

@@ -5,7 +5,9 @@
* Defines async methods using domain entities as types.
*/
import type { Car, CarClass, CarLicense } from '../entities/Car';
import type { Car } from '../entities/Car';
import type { CarClass } from '../entities/CarClass';
import type { CarLicense } from '../entities/CarLicense';
export interface ICarRepository {
/**

View File

@@ -1,4 +1,4 @@
import type { Season } from '../entities/Season';
import type { Season } from '../entities/season/Season';
export interface ISeasonRepository {
findById(id: string): Promise<Season | null>;

View File

@@ -4,7 +4,7 @@
* Defines operations for SeasonSponsorship aggregate persistence
*/
import type { SeasonSponsorship, SponsorshipTier } from '../entities/SeasonSponsorship';
import type { SeasonSponsorship, SponsorshipTier } from '../entities/season/SeasonSponsorship';
export interface ISeasonSponsorshipRepository {
findById(id: string): Promise<SeasonSponsorship | null>;