Add unit tests for DashboardPdfStatementService to validate PDF generation with entries and transfers

This commit is contained in:
2026-04-03 12:33:48 +02:00
parent 69181e66b0
commit 9aa1fee49e
9 changed files with 448 additions and 3 deletions

View File

@@ -3,4 +3,5 @@ namespace Duempelkas.App.Services;
public interface IPdfStatementService
{
Task<byte[]> GenerateStatementAsync(int accountId, bool currentYearOnly);
Task<byte[]> GenerateDashboardStatementAsync();
}