using Microsoft.AspNetCore.Components; using TIAM.Entities.ServiceProviders; using TIAM.Entities.Users; using TIAM.Services; namespace TIAMSharedUI.Shared.Components.Grids; public class UserProductMappingDriverGrid : TiamGrid { public UserProductMappingDriverGrid() : base() { GetAllMessageTag = SignalRTags.GetAllUserProductMappings; AddMessageTag = SignalRTags.CreateUserProductMapping; UpdateMessageTag = SignalRTags.UpdateUserProductMapping; RemoveMessageTag = SignalRTags.DeleteUserProductMapping; } protected override Task SetParametersAsyncCore(ParameterView parameters) { if (!IsFirstInitializeParameters) { //ShowFilterRow = true; //ShowGroupPanel = true; //AllowSort = false; //etc... } return base.SetParametersAsyncCore(parameters); } }