using xPushService.Base; using xPushService.Interfaces; namespace xWebinarService.Interfaces { public abstract class XWebinarHub : XBaseWebRTCHub { protected XWebinarHub( IXPushGroupStore groupStore, IXPushConnectionStore connectionStore, IXWebRTCConnectionStore webRTCConnectionStore ) : base( groupStore, connectionStore, webRTCConnectionStore ) { } } }