示例#1
0
 public PointController(IPointService service, IEdgeService edgeService, IMainAlgoritmService algoritmService, IMapper mapper)
 {
     this.pointService    = service;
     this.edgeService     = edgeService;
     this.algoritmService = algoritmService;
     this.mapper          = mapper;
 }
示例#2
0
 public DijstraController(IMainAlgoritmService algoritmService, IPointService pointService, IMapper mapper)
 {
     this.algoritmService = algoritmService;
     this.pointService    = pointService;
     this.mapper          = mapper;
 }