From 3cc6eba28e75896b86e22c6c115f74332e592487 Mon Sep 17 00:00:00 2001 From: KoCoder Date: Thu, 19 Feb 2026 17:49:19 +0100 Subject: [PATCH] New: Construct Parameter List --- Interfaces/IReportUI.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Interfaces/IReportUI.cs b/Interfaces/IReportUI.cs index cfa3f12..51c08d5 100644 --- a/Interfaces/IReportUI.cs +++ b/Interfaces/IReportUI.cs @@ -17,4 +17,12 @@ public interface IReportUI /// The reportable Entity that is being reported. /// IReportable ReportableEntity { get; set; } + + /// + /// Constructs a list of parameters to be passed to the component. + /// + /// The entity to be reported. + /// The render mode boundary. + /// A dictionary of parameters. For + Dictionary ConstructParameterList(IReportable reportableEntity, object RenderModeBoundary); } \ No newline at end of file