@page "/dialogcard/{OrderID}" @using Microsoft.EntityFrameworkCore @inject Radzen.DialogService dialogService @code { [Parameter] public int OrderID { get; set; } [Parameter] public bool ShowClose { get; set; } = true; protected override async Task OnParametersSetAsync() { await base.OnParametersSetAsync(); } }