TourIAm/TIAMSharedUI/Shared/Components/Grids/UserProductMappingUserDetai...

31 lines
919 B
C#

using Microsoft.AspNetCore.Components;
using TIAM.Entities.ServiceProviders;
using TIAM.Entities.Users;
using TIAM.Services;
namespace TIAMSharedUI.Shared.Components.Grids;
public class UserProductMappingUserDetailGrid : UserProductMappingGrid
{
public UserProductMappingUserDetailGrid() : base()
{
GetAllMessageTag = SignalRTags.GetUserProductMappingsByUserId;
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);
}
}