This commit is contained in:
2025-12-17 00:33:13 +01:00
parent 8c67081953
commit f01e01e50c
186 changed files with 9242 additions and 1342 deletions

View File

@@ -1,4 +1,4 @@
import type { ChampionshipStanding } from '../entities/ChampionshipStanding';
import type { ChampionshipStanding } from '../entities/championship/ChampionshipStanding';
export interface IChampionshipStandingRepository {
findBySeasonAndChampionship(

View File

@@ -1,10 +1,10 @@
/**
* Repository Interface: ILeagueWalletRepository
*
*
* Defines operations for LeagueWallet aggregate persistence
*/
import type { LeagueWallet } from '../entities/LeagueWallet';
import type { LeagueWallet } from '../entities/league-wallet/LeagueWallet';
export interface ILeagueWalletRepository {
findById(id: string): Promise<LeagueWallet | null>;