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