implement all Data Helper Requirements ...
This commit is contained in:
@@ -1,12 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using GraphQL.Types;
|
||||
using xDataService.Configuration;
|
||||
using xDataService.GraphQL;
|
||||
using xWebinarService.Interfaces.Entities;
|
||||
using xWebinarService.Models.Entities;
|
||||
|
||||
namespace xWebinarService.DataHelper.GraphQL
|
||||
{
|
||||
public class XWebinarSubscriberGraphQuery
|
||||
public class XWebinarSubscriberGraphQuery : XBaseGraphQLQuery<XWebinarSubscriber, int, XWebinarSubscriberGraphType, IntGraphType>
|
||||
{
|
||||
|
||||
public XWebinarSubscriberGraphQuery(
|
||||
XDataServiceConfiguration configuration,
|
||||
IXWebinarSubscriberRepository repository,
|
||||
IXWebinarSubscriberGraphQLTypeHelper helper
|
||||
) : base(
|
||||
configuration,
|
||||
repository,
|
||||
helper
|
||||
)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user