public ResourceHookExecutor(
     IHookExecutorHelper executorHelper,
     ITraversalHelper traversalHelper,
     ITargetedFields targetedFields,
     IEnumerable <IQueryConstraintProvider> constraintProviders,
     IResourceGraph resourceGraph)
 {
     _executorHelper      = executorHelper;
     _traversalHelper     = traversalHelper;
     _targetedFields      = targetedFields;
     _constraintProviders = constraintProviders;
     _resourceGraph       = resourceGraph;
 }
Пример #2
0
 public ResourceHookExecutor(
     IHookExecutorHelper executorHelper,
     ITraversalHelper traversalHelper,
     ITargetedFields targetedFields,
     IIncludeService includedRelationships,
     IResourceGraph resourceGraph)
 {
     _executorHelper  = executorHelper;
     _traversalHelper = traversalHelper;
     _targetedFields  = targetedFields;
     _includeService  = includedRelationships;
     _resourceGraph   = resourceGraph;
 }