Add Blazor application layer with UI components and pages
- 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
This commit is contained in:
6
src/Duempelkas.App/Services/IPdfStatementService.cs
Normal file
6
src/Duempelkas.App/Services/IPdfStatementService.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Duempelkas.App.Services;
|
||||
|
||||
public interface IPdfStatementService
|
||||
{
|
||||
Task<byte[]> GenerateStatementAsync(int accountId, bool currentYearOnly);
|
||||
}
|
||||
Reference in New Issue
Block a user