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 XAiProjectServiceProvider : XBaseDtoProvider<XAiProject, XAiProjectDto, Guid, XAiProjectDtoHub>, IXAiProjectServiceProvider
|
|
{
|
|
public XAiProjectServiceProvider(
|
|
IHubContext<XAiProjectDtoHub> hub,
|
|
XDataServiceConfiguration dataConfiguration,
|
|
IXAiProjectRepositoryService service,
|
|
IXIdentityProvider identityProvider = null
|
|
) : base(
|
|
hub,
|
|
dataConfiguration,
|
|
service,
|
|
identityProvider
|
|
)
|
|
{ }
|
|
}
|
|
} |