22 lines
595 B
C#
22 lines
595 B
C#
using GraphQL.Types;
|
|
using xDataService.Configuration;
|
|
using xDataService.GraphQL;
|
|
using xStringService.Interfaces.Entities;
|
|
using xStringService.Models.Entities;
|
|
|
|
namespace xDataHelper.GraphQL
|
|
{
|
|
public class XStringGraphQuery : XBaseGraphQLQuery<XString, int, XStringGraphType, IntGraphType>
|
|
{
|
|
public XStringGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXStringRepository repository,
|
|
IXStringGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |