24 lines
612 B
C#
24 lines
612 B
C#
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<XTest, Guid, XTestGraphType, GuidGraphType>
|
|
{
|
|
public XTestGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXTestRepository repository,
|
|
IXTestGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |