31 lines
912 B
C#
31 lines
912 B
C#
using Microsoft.AspNetCore.Components;
|
|
using TIAM.Entities.ServiceProviders;
|
|
using TIAM.Entities.Users;
|
|
using TIAM.Services;
|
|
|
|
namespace TIAMSharedUI.Shared.Components.Grids;
|
|
|
|
public class UserProductMappingDriverGrid : TiamGrid<UserProductMapping>
|
|
{
|
|
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);
|
|
}
|
|
} |