Files
xAiModels/Providers/Dtos/XAiConversationServiceProvider.cs
T

27 lines
860 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 XAiConversationServiceProvider : XBaseDtoProvider<XAiConversation, XAiConversationDto, Guid, XAiConversationDtoHub>, IXAiConversationServiceProvider
{
public XAiConversationServiceProvider(
IHubContext<XAiConversationDtoHub> hub,
XDataServiceConfiguration dataConfiguration,
IXAiConversationRepositoryService service,
IXIdentityProvider identityProvider = null
) : base(
hub,
dataConfiguration,
service,
identityProvider
)
{ }
}
}