16 lines
443 B
C#
16 lines
443 B
C#
using Microsoft.Extensions.Logging;
|
|
using xCategoryService.Interfaces.Dtos;
|
|
using xCategoryService.Models.Dtos;
|
|
using xCategoryService.Models.Entities;
|
|
using xPushService.Base;
|
|
|
|
namespace xCategoryService.Providers.Dtos
|
|
{
|
|
public class XCategoryDtoHub : XBaseDtoHub<XCategory, XCategoryDto, int>, IXCategoryDtoHub
|
|
{
|
|
public XCategoryDtoHub(
|
|
ILogger<XCategoryDtoHub> logger
|
|
) : base(logger)
|
|
{ }
|
|
}
|
|
} |