Example #1
0
 public DurationService(IUnitOfWork unitOfWork, IRoomService roomService, IExhibitService exhibitService, IShortestPathAndSuggestRouteService shortestPathAndSuggestRouteService)
 {
     _roomService    = roomService;
     _unitOfWork     = unitOfWork;
     _exhibitService = exhibitService;
     _shortestPathAndSuggestRouteService = shortestPathAndSuggestRouteService;
 }
 public ShortestPathAndSuggestRouteController(IShortestPathAndSuggestRouteService shortestPathAndSuggestRouteService)
 {
     _shortestPathAndSuggestRouteService = shortestPathAndSuggestRouteService;
 }