33 lines
1008 B
C#
33 lines
1008 B
C#
using System;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using Microsoft.Extensions.Logging;
|
|
using xAiApi.AI.Interfaces.Entities;
|
|
using xAiApi.AI.Models.Entities;
|
|
using xAiApi.Base;
|
|
using xCommons.Configurations;
|
|
using xCommons.Providers;
|
|
using xIdentityService.Interfaces;
|
|
using xPushService.Base;
|
|
|
|
namespace xAiApi.Controllers.V1.Entities
|
|
{
|
|
public class AiConversationsController : XIBaseV1EntityHubController<XAiConversation, Guid>
|
|
{
|
|
public AiConversationsController(
|
|
ILogger<AiConversationsController> logger,
|
|
XAppConfiguration appConfiguration,
|
|
IXIdentityProvider identityProvider,
|
|
XValidationProvider validationProvider,
|
|
IXAiConversationRepository repository,
|
|
IHubContext<XBaseEntityHub<XAiConversation, Guid>> hub = null
|
|
) : base(
|
|
logger,
|
|
appConfiguration,
|
|
identityProvider,
|
|
validationProvider,
|
|
repository,
|
|
hub
|
|
)
|
|
{ }
|
|
}
|
|
} |