コード例 #1
0
        private IEnumerable <FlightService.Flight> RunDijkstra(FlightService.Airport @from, FlightService.Airport to, string date, bool usePrice)
        {
            var result = _fService.RunDijkstra(@from, to, date, usePrice);

            return(result);
        }