using Microsoft.AspNetCore.Components; using TIAM.Entities.Profiles; using TIAM.Services; namespace TIAMSharedUI.Shared.Components.Grids; public class ProfileGrid : TiamGrid { public ProfileGrid() : base() { GetAllMessageTag = SignalRTags.GetProfileById; //AddMessageTag = SignalRTags.AddProfile; UpdateMessageTag = SignalRTags.UpdateProfile; //RemoveMessageTag = SignalRTags.RemoveProfile; } protected override Task SetParametersAsyncCore(ParameterView parameters) { if (!IsFirstInitializeParameters) { //ShowFilterRow = true; //ShowGroupPanel = true; //AllowSort = false; //etc... } return base.SetParametersAsyncCore(parameters); } }