Exemplo n.º 1
0
 public GraphqlServerCoreModule(IModuleHost host, IGraphQLServerModuleCollection collection) : base(host)
 {
     Collection = collection;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create the instance.
 /// </summary>
 /// <param name="host"></param>
 protected GraphQLServerModule(IModuleHost host) : base(host)
 {
     Collection = host.GetGraphQLServerModuleCollection();
     _manifest  = new Lazy <GraphQLServerModuleManifest>(() => Collection.GetManifest(GetType()));
 }