refactor
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { ChampionshipStanding } from '../entities/ChampionshipStanding';
|
||||
import type { ChampionshipStanding } from '../entities/championship/ChampionshipStanding';
|
||||
|
||||
export interface IChampionshipStandingRepository {
|
||||
findBySeasonAndChampionship(
|
||||
|
||||
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user