示例#1
0
 public LPQuery(ILPService lpService)
 {
     Field <ListGraphType <LPType> >(
         "LP",
         resolve: context => lpService.GetLPs()
         );
 }
示例#2
0
 public Functions(ILPService lPService, ILPSummaryService lPSummaryService)
 {
     _LPService        = lPService;
     _LPSummaryService = lPSummaryService;
 }