26 lines
801 B
C#
26 lines
801 B
C#
using System;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using xAiModels.Interfaces.Entities;
|
|
using xAiModels.Models.Entities;
|
|
using xDataService.Configuration;
|
|
using xIdentityService.Interfaces;
|
|
using xPushService.Base;
|
|
|
|
namespace xAiModels.Providers.Entities
|
|
{
|
|
public class XAiProjectRepositoryProvider : XBaseEntityProvider<XAiProject, Guid, XAiProjectEntityHub>, IXAiProjectRepositoryProvider
|
|
{
|
|
public XAiProjectRepositoryProvider(
|
|
IHubContext<XAiProjectEntityHub> hub,
|
|
IXAiProjectRepository repository,
|
|
XDataServiceConfiguration dataConfiguration,
|
|
IXIdentityProvider identityProvider = null
|
|
) : base(
|
|
hub,
|
|
repository,
|
|
dataConfiguration,
|
|
identityProvider
|
|
)
|
|
{ }
|
|
}
|
|
} |