using Microsoft.AspNetCore.Components; using TIAM.Entities.Profiles; using TIAM.Services; namespace TIAMSharedUI.Shared.Components.Grids; public class TransferDestinationDetailGrid : TransferDestinationGrid { public TransferDestinationDetailGrid() : base() { GetAllMessageTag = SignalRTags.GetAllTransferDestinations; AddMessageTag = SignalRTags.CreateTransferDestination; UpdateMessageTag = SignalRTags.UpdateTransferDestination; RemoveMessageTag = SignalRTags.RemoveTransferDestination; } protected override Task SetParametersAsyncCore(ParameterView parameters) { if (!IsFirstInitializeParameters) { //ShowFilterRow = true; //ShowGroupPanel = true; //AllowSort = false; //etc... } return base.SetParametersAsyncCore(parameters); } }