feat: add showDividend param to IReportOrchestrator interface

This commit is contained in:
2026-03-23 15:50:56 +01:00
parent 2ddd5af043
commit f79423219f

View File

@@ -46,5 +46,5 @@ public interface IPdfMergerService
/// </summary>
public interface IReportOrchestrator
{
Task<byte[]> GenerateReportAsync(string isin, bool showBranding = false);
Task<byte[]> GenerateReportAsync(string isin, bool showBranding = false, bool showDividend = false);
}