NEW: ConstructParameterList

This commit is contained in:
2026-02-19 17:57:41 +01:00
parent 235ab23ed4
commit 71d8059ee7
3 changed files with 10 additions and 3 deletions

View File

@@ -49,7 +49,14 @@
{ {
_showReportModal = false; _showReportModal = false;
} }
public Dictionary<string, object> ConstructParameterList(IReportable reportableEntity, object RenderModeBoundary) {
Dictionary<string, object> _parameters = new Dictionary<string, object>();
_parameters["ReportableEntity"] = _blackBoard;
_parameters["RenderModeBoundary"] = RenderModeBoundary;
return _parameters;
}
private async Task ReportEntry() private async Task ReportEntry()
{ {
// Basic null checks to avoid runtime NREs // Basic null checks to avoid runtime NREs

View File

@@ -13,7 +13,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Interfaces" Version="0.0.0-11" /> <PackageReference Include="Interfaces" Version="0.0.0-12" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.1" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.1" /> <PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.1" />

View File

@@ -12,7 +12,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Interfaces" Version="0.0.0-11" /> <PackageReference Include="Interfaces" Version="0.0.0-12" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup> </ItemGroup>