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