15 lines
416 B
C#
15 lines
416 B
C#
using Microsoft.Extensions.Logging;
|
|
using xCategoryService.Interfaces.Entities;
|
|
using xCategoryService.Models.Entities;
|
|
using xPushService.Base;
|
|
|
|
namespace xCategoryService.Providers.Entities
|
|
{
|
|
public class XCategoryEntityHub : XBaseEntityHub<XCategory, int>, IXCategoryEntityHub
|
|
{
|
|
public XCategoryEntityHub(
|
|
ILogger<XCategoryEntityHub> logger
|
|
) : base(logger)
|
|
{ }
|
|
}
|
|
} |