示例#1
0
 public MapAgentLogic(
     ILogger logger,
     IWorldGraph worldGraph,
     IBlobStoreService blobStoreService,
     IMapCoverage mapCoverage,
     ISelfie selfie,
     ILocationInformation locationInformation,
     IConfiguration configuration,
     IGraphPeek graphPeek)
 {
     _logger              = logger;
     _worldGraph          = worldGraph;
     _blobStoreService    = blobStoreService;
     _mapCoverage         = mapCoverage;
     _selfie              = selfie;
     _locationInformation = locationInformation;
     _configuration       = configuration;
     _graphPeek           = graphPeek;
 }
示例#2
0
 public GraphPeek(IWorldGraph worldGraph)
 {
     _worldGraph = worldGraph;
 }