- Service interfaces and DTO models - Dashboard page with account overview - Account detail page with year/entry management - Reusable components: AccountCard, EntryTable, YearSelector - Dialog components: Add/Edit Account, Entry, Transfer, Year - Main layout and routing configuration
7 lines
156 B
C#
7 lines
156 B
C#
namespace Duempelkas.App.Services;
|
|
|
|
public interface IPdfStatementService
|
|
{
|
|
Task<byte[]> GenerateStatementAsync(int accountId, bool currentYearOnly);
|
|
}
|