Add finance summary view and HR guide

This commit is contained in:
2026-05-20 15:17:10 +02:00
parent de0b12ba37
commit 610e771b9b
8 changed files with 552 additions and 2 deletions
@@ -9,6 +9,7 @@ public interface IManagementCockpitPageService
Task<List<int>> LoadCentralYearsAsync();
Task<ManagementCockpitResult> AnalyzeAsync(string filePath, ManagementCockpitAnalysisOptions options);
Task<ManagementCockpitCentralResult> AnalyzeCentralAsync(int year, int? month, ManagementCockpitAnalysisOptions options);
Task<ManagementFinanceSummaryResult> AnalyzeFinanceSummaryAsync(int year, string? countryKey, string? currency);
}
public sealed class ManagementCockpitPageService : IManagementCockpitPageService
@@ -46,6 +47,9 @@ public sealed class ManagementCockpitPageService : IManagementCockpitPageService
public Task<ManagementCockpitCentralResult> AnalyzeCentralAsync(int year, int? month, ManagementCockpitAnalysisOptions options)
=> _cockpitService.AnalyzeCentralAsync(year, month, options);
public Task<ManagementFinanceSummaryResult> AnalyzeFinanceSummaryAsync(int year, string? countryKey, string? currency)
=> _cockpitService.AnalyzeFinanceSummaryAsync(year, countryKey, currency);
}
public sealed class ManagementCockpitPageState