Exemplo n.º 1
0
 public StandardPathFinder(
     IGraphDescriptor graphDescriptor,
     IPathFinderAuxiliaries pathFinderAuxiliaries)
     : base(graphDescriptor)
 {
     _pathFinderAuxiliaries = pathFinderAuxiliaries;
 }
 public Neo4jPathFinder(
     IGraphDescriptor graphDescriptor,
     Uri rootUri,
     INeo4jGraphClientPool graphClientPool,
     IPathFinderAuxiliaries pathFinderAuxiliaries,
     IGraphEventMonitor graphEventMonitor)
     : base(graphDescriptor, rootUri, graphClientPool)
 {
     _graphEventMonitor = graphEventMonitor;
     _pathFinderAuxiliaries = pathFinderAuxiliaries;
 }