17 lines
476 B
C#
17 lines
476 B
C#
using TIAM.Entities.ServiceProviders;
|
|
using TIAM.Services;
|
|
|
|
namespace TIAMSharedUI.Shared.Components.Grids;
|
|
|
|
public class CompanyGrid : TiamGrid<Company>
|
|
{
|
|
public CompanyGrid() : base()
|
|
{
|
|
GridName = nameof(CompanyGrid);
|
|
|
|
GetAllMessageTag = SignalRTags.GetCompaniesAsync;
|
|
AddMessageTag = SignalRTags.AddCompanyAsync;
|
|
UpdateMessageTag = SignalRTags.UpdateCompanyAsync;
|
|
RemoveMessageTag = SignalRTags.RemoveCompanyAsync;
|
|
}
|
|
} |