public GraphNavigator(DirectedGraph graph, Point start, Point end, IRoadPathService roadPathService)
 {
     State = new GraphNavigationState(graph, start, end);
     this.roadPathService = roadPathService;
 }
 public DirectionsService(IRoadPathService roadPathService, ILogService logService)
 {
     this.roadPathService = roadPathService;
     this.logService = logService;
 }