feat: add showNatixis param to IReportOrchestrator interface

This commit is contained in:
2026-03-26 12:30:08 +01:00
parent df726306db
commit 59ff3e9ac8

View File

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