public GraphImageService(
     IStorageProvider storageProvider,
     IDistributedLockManager lockManager,
     IGraphCacheService cacheService,
     IGraphEventMonitor graphEventMonitor)
 {
     _storageProvider = storageProvider;
     _lockManager = lockManager;
     _cacheService = cacheService;
     _graphEventMonitor = graphEventMonitor;
 }
 public Neo4jPathFinder(
     IGraphDescriptor graphDescriptor,
     Uri rootUri,
     INeo4jGraphClientPool graphClientPool,
     IPathFinderAuxiliaries pathFinderAuxiliaries,
     IGraphEventMonitor graphEventMonitor)
     : base(graphDescriptor, rootUri, graphClientPool)
 {
     _graphEventMonitor = graphEventMonitor;
     _pathFinderAuxiliaries = pathFinderAuxiliaries;
 }