using System; using GraphQL.Types; using xDataService.Configuration; using xDataService.GraphQL; using xWebinarService.Interfaces.Entities; using xWebinarService.Models.Entities; namespace xWebinarService.Providers.GraphQL { public class XWebinarGraphQuery : XBaseGraphQLQuery { public XWebinarGraphQuery( XDataServiceConfiguration configuration, IXWebinarRepository repository, IXWebinarGraphQLTypeHelper helper ) : base( configuration, repository, helper ) { } } }