Query.cs 252 B

12345678910111213141516
  1. using System;
  2. using GraphQL.Types;
  3. using MySystem.PxcModels;
  4. namespace MySystem.PublicClass.GraphQL
  5. {
  6. public class Query : ObjectGraphType
  7. {
  8. public Query(IRepository repository)
  9. {
  10. }
  11. }
  12. }