wip
This commit is contained in:
6
packages/racing/domain/repositories/ISeasonRepository.ts
Normal file
6
packages/racing/domain/repositories/ISeasonRepository.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { Season } from '../entities/Season';
|
||||
|
||||
export interface ISeasonRepository {
|
||||
findById(id: string): Promise<Season | null>;
|
||||
findByLeagueId(leagueId: string): Promise<Season[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user