13 lines
370 B
C#
13 lines
370 B
C#
using System;
|
|
using GraphQL.Types;
|
|
|
|
namespace xWebinarService.DataHelper.GraphQL
|
|
{
|
|
public class XWebinarSubscriberGraphSchema : Schema
|
|
{
|
|
public XWebinarSubscriberGraphSchema(IServiceProvider services) : base(services)
|
|
{
|
|
Query = (XWebinarSubscriberGraphQuery)services.GetService(typeof(XWebinarSubscriberGraphQuery));
|
|
}
|
|
}
|
|
} |