27 lines
820 B
C#
27 lines
820 B
C#
using System;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using xAiModels.Interfaces.Dtos;
|
|
using xAiModels.Models.Dtos;
|
|
using xAiModels.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xIdentityService.Interfaces;
|
|
using xPushService.Base;
|
|
|
|
namespace xAiModels.Providers.Dtos
|
|
{
|
|
public class XAiMessageServiceProvider : XBaseDtoProvider<XAiMessage, XAiMessageDto, Guid, XAiMessageDtoHub>, IXAiMessageServiceProvider
|
|
{
|
|
public XAiMessageServiceProvider(
|
|
IHubContext<XAiMessageDtoHub> hub,
|
|
XDataServiceConfiguration dataConfiguration,
|
|
IXAiMessageRepositoryService service,
|
|
IXIdentityProvider identityProvider = null
|
|
) : base(
|
|
hub,
|
|
dataConfiguration,
|
|
service,
|
|
identityProvider
|
|
)
|
|
{ }
|
|
}
|
|
} |