Exemple #1
0
        public IHttpActionResult GetOneWayFlightsByQuery(DateTime departureDate, int originCountryId = 0, int destinationCountryId = 0)
        {
            IList <JObject> flights = facade.GetOneWayFlightsByQuery(originCountryId, destinationCountryId, departureDate);

            return(Ok(flights));
        }