8 lines
208 B
C#
8 lines
208 B
C#
namespace Duempelkas.App.Services;
|
|
|
|
public interface IPdfStatementService
|
|
{
|
|
Task<byte[]> GenerateStatementAsync(int accountId, bool currentYearOnly);
|
|
Task<byte[]> GenerateDashboardStatementAsync();
|
|
}
|