using System; using Microsoft.AspNetCore.SignalR; using xDataService.Configuration; using xIdentityService.Interfaces; using xPushService.Base; using xWebinarService.Interfaces.Entities; using xWebinarService.Models.Entities; namespace xWebinarService.Providers.Entities { public class XWebinarRepositoryProvider : XBaseEntityProvider, IXWebinarRepositoryProvider { public XWebinarRepositoryProvider( IHubContext hub, IXWebinarRepository repository, XDataServiceConfiguration dataConfiguration, IXIdentityProvider identityProvider = null ) : base( hub, repository, dataConfiguration, identityProvider ) { } } }