26 lines
668 B
C#
26 lines
668 B
C#
using Microsoft.AspNetCore.Components;
|
|
using TIAM.Services;
|
|
|
|
namespace TIAMSharedUI.Shared.Components.Grids;
|
|
|
|
public class CompanyByIdDetailGrid : CompanyGrid
|
|
{
|
|
public CompanyByIdDetailGrid() : base()
|
|
{
|
|
GetAllMessageTag = SignalRTags.GetCompany;
|
|
AddMessageTag = SignalRTags.AddCompany;
|
|
UpdateMessageTag = SignalRTags.UpdateCompany;
|
|
RemoveMessageTag = SignalRTags.RemoveCompany;
|
|
}
|
|
|
|
protected override Task SetParametersAsyncCore(ParameterView parameters)
|
|
{
|
|
var isFirst = IsFirstInitializeParameters;
|
|
|
|
return base.SetParametersAsyncCore(parameters);
|
|
|
|
if (isFirst)
|
|
{
|
|
}
|
|
}
|
|
} |