Files
duempelkas/src/Duempelkas.App/Services/IPdfStatementService.cs

8 lines
208 B
C#

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