diff --git a/TIAMSharedUI/Pages/User/ServiceProvider.razor b/TIAMSharedUI/Pages/User/ServiceProvider.razor
index 2b8eeb36..3ce5902a 100644
--- a/TIAMSharedUI/Pages/User/ServiceProvider.razor
+++ b/TIAMSharedUI/Pages/User/ServiceProvider.razor
@@ -3,6 +3,7 @@
@using AyCode.Services.Loggers
@using TIAM.Entities.ServiceProviders
@using TIAM.Resources
+@using TIAM.Services
@using TIAMSharedUI.Pages.User.SysAdmins
@using TIAMSharedUI.Shared
@using TIAMSharedUI.Shared.Components.Grids
@@ -63,7 +64,7 @@
-
+
diff --git a/TIAMSharedUI/Pages/User/SysAdmins/ProductDetailGridComponent.razor b/TIAMSharedUI/Pages/User/SysAdmins/ProductDetailGridComponent.razor
index 88543310..ce6cae99 100644
--- a/TIAMSharedUI/Pages/User/SysAdmins/ProductDetailGridComponent.razor
+++ b/TIAMSharedUI/Pages/User/SysAdmins/ProductDetailGridComponent.razor
@@ -89,10 +89,10 @@
[Parameter] public Guid? ContextId { get; set; }
[Parameter] public IProductsRelation? ParentData { get; set; } = null!;
[Parameter] public EventCallback OnGridEditModelSaving { get; set; }
- [Parameter] public int GetAllTag { get; set; } = SignalRTags.GetProductsByContextId;
+ [Parameter] public int GetAllTag { get; set; } = SignalRTags.GetProductsByOwnerId;
[Parameter] public GridDetailExpandButtonDisplayMode DetailExpandButtonDisplayMode { get; set; } = GridDetailExpandButtonDisplayMode.Never;
- private ProductDetailGrid _productGrid = null!;
+ // private ProductDetailGrid _productGrid = null!;
private LoggerClient _logger = null!;
protected override void OnInitialized()
{
diff --git a/TIAMSharedUI/Shared/Components/Grids/CompanyByIdDetailGrid.cs b/TIAMSharedUI/Shared/Components/Grids/CompanyByIdDetailGrid.cs
index 12ecf1f0..a39af889 100644
--- a/TIAMSharedUI/Shared/Components/Grids/CompanyByIdDetailGrid.cs
+++ b/TIAMSharedUI/Shared/Components/Grids/CompanyByIdDetailGrid.cs
@@ -7,7 +7,7 @@ public class CompanyByIdDetailGrid : CompanyGrid
{
public CompanyByIdDetailGrid() : base()
{
- GetAllMessageTag = SignalRTags.GetCompany;
+ GetAllMessageTag = SignalRTags.GetCompaniesById;
AddMessageTag = SignalRTags.AddCompany;
UpdateMessageTag = SignalRTags.UpdateCompany;
RemoveMessageTag = SignalRTags.RemoveCompany;