Skip to content

Commit

Permalink
added missing file....
Browse files Browse the repository at this point in the history
  • Loading branch information
Numero7 committed Feb 13, 2025
1 parent 8bc65a2 commit 7d56f6d
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { ProgressionÉlève } from "@/features/élève/domain/élève.interface";
import { type ÉlèveRepository } from "@/features/élève/infrastructure/gateway/élèveRepository.interface";

export class RécupérerProgressionÉlèveUseCase {
public constructor(private readonly _élèveRepository: ÉlèveRepository) {}

public async run(): Promise<ProgressionÉlève> {
return await this._élèveRepository.récupérerProgressionÉlève();
}
}

0 comments on commit 7d56f6d

Please sign in to comment.