public IHttpActionResult GetLandingAndDepartureFlights()
        {
            IList <FlightView> flights = anonymous.GetLandingAndDepartureFlights();

            if (flights.Count == 0)
            {
                return(NotFound());
            }
            return(Ok(flights));
        }