using System; using GraphQL.Types; using xDataService.Configuration; using xDataService.GraphQL; using xServices.Interfaces; using xServices.Models.Entities; using xServices.Models.GraphQL; namespace xServices.Providers { public class XTestGraphQuery : XBaseGraphQLQuery { public XTestGraphQuery( XDataServiceConfiguration configuration, IXTestRepository repository, IXTestGraphQLTypeHelper helper ) : base( configuration, repository, helper ) { } } }