コード例 #1
0
 public ConversationPathService(EdgeService edgeService, VerticeService verticeService, ShortestPathService shortestPathService)
 {
     _edgeService         = edgeService;
     _verticeService      = verticeService;
     _shortestPathService = shortestPathService;
 }
コード例 #2
0
 public ConversationPathService()
 {
     edgeService         = new EdgeService();
     verticeService      = new VerticeService();
     shortestPathService = new ShortestPathService();
 }