feat: weekly stats for junior

This commit is contained in:
Abdalhameed Ahmad
2025-09-23 08:56:57 +03:00
parent 44124b9964
commit 1830d92cbd
8 changed files with 123 additions and 2 deletions

View File

@ -163,6 +163,10 @@ export class CardService {
return finalAmount.toNumber();
}
getWeeklySummary(juniorId: string) {
return this.transactionService.getWeeklySummary(juniorId);
}
fundIban(iban: string, amount: number) {
return this.accountService.fundIban(iban, amount);
}