23 lines
634 B
C#
23 lines
634 B
C#
using System;
|
|
using GraphQL.Types;
|
|
using xDataService.Configuration;
|
|
using xDataService.GraphQL;
|
|
using xWebinarService.Interfaces.Entities;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.DataHelper.GraphQL
|
|
{
|
|
public class XWebinarGraphQuery : XBaseGraphQLQuery<XWebinar, Guid, XWebinarGraphType, GuidGraphType>
|
|
{
|
|
public XWebinarGraphQuery(
|
|
XDataServiceConfiguration configuration,
|
|
IXWebinarRepository repository,
|
|
IXWebinarGraphQLTypeHelper helper
|
|
) : base(
|
|
configuration,
|
|
repository,
|
|
helper
|
|
)
|
|
{ }
|
|
}
|
|
} |