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