23 lines
607 B
C#
23 lines
607 B
C#
using System;
|
|
using GraphQL.Types;
|
|
using xDataService.Configuration;
|
|
using xDataService.GraphQL;
|
|
using xFileService.Interfaces.Entities;
|
|
using xFileService.Models.Entities;
|
|
|
|
namespace xFileService.DataHelper.GraphQL
|
|
{
|
|
public class XFileGraphQuery : XBaseGraphQLQuery<XFile, Guid, XFileGraphType, GuidGraphType>
|
|
{
|
|
public XFileGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXFileRepository repository,
|
|
IXFileGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |