using Microsoft.AspNetCore.SignalR; using xDataService.Configuration; using xIdentityService.Interfaces; using xPushService.Base; using xStringService.Interfaces.Entities; using xStringService.Models.Entities; namespace xStringService.Providers.Entities { public class XStringRepositoryProvider : XBaseEntityProvider, IXStringRepositoryProvider { public XStringRepositoryProvider( IHubContext hub, IXStringRepository repository, XDataServiceConfiguration dataConfiguration, IXIdentityProvider identityProvider = null ) : base( hub, repository, dataConfiguration, identityProvider ) { } } }