fix issues in core
This commit is contained in:
@@ -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 {
|
||||
/**
|
||||
|
||||
@@ -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>;
|
||||
|
||||
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user