26 lines
825 B
C#
26 lines
825 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
using xCategoryService.Interfaces.Dtos;
|
|
using xCategoryService.Models.Dtos;
|
|
using xCategoryService.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xIdentityService.Interfaces;
|
|
using xPushService.Base;
|
|
|
|
namespace xCategoryService.Providers.Dtos
|
|
{
|
|
public class XCategoryServiceProvider : XBaseDtoProvider<XCategory, XCategoryDto, int, XCategoryDtoHub>, IXCategoryServiceProvider
|
|
{
|
|
public XCategoryServiceProvider(
|
|
IHubContext<XCategoryDtoHub> hub,
|
|
XDataServiceConfiguration dataConfiguration,
|
|
IXCategoryRepositoryService service,
|
|
IXIdentityProvider identityProvider = null
|
|
) : base(
|
|
hub,
|
|
dataConfiguration,
|
|
service,
|
|
identityProvider
|
|
)
|
|
{ }
|
|
}
|
|
} |