Add Entity Hub and also Implement DI Extensions for Register Service ...

This commit is contained in:
2025-12-07 16:12:55 +03:30
parent 8df32474ac
commit 8958ad5682
2 changed files with 119 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using Microsoft.Extensions.Logging;
using xPushService.Base;
using xTagService.Models.Entities;
namespace xTagService.Hubs
{
public class XTagEntityHub : XBaseEntityHub<XTag, int>
{
//
#region Constructor ...
public XTagEntityHub(ILogger<XBaseHub> logger) : base(logger)
{
}
#endregion
}
}