using Microsoft.AspNetCore.Components; using TIAM.Entities.Products; using TIAM.Entities.Transfers; using TIAM.Services; namespace TIAMSharedUI.Shared.Components.Grids; public class TransferDestinationToProductGrid : TiamGrid { public TransferDestinationToProductGrid() : base() { GetAllMessageTag = SignalRTags.GetAllTransferDestinationToProducts; AddMessageTag = SignalRTags.CreateTransferDestinationToProduct; UpdateMessageTag = SignalRTags.UpdateTransferDestinationToProduct; RemoveMessageTag = SignalRTags.RemoveTransferDestinationToProduct; } protected override Task SetParametersAsyncCore(ParameterView parameters) { if (!IsFirstInitializeParameters) { //ShowFilterRow = true; //ShowGroupPanel = true; //AllowSort = false; //etc... } return base.SetParametersAsyncCore(parameters); } }