public string Get(int id)
        {
            FlightPlan flight   = serverM.GetFlightById(id);
            string     response = JsonConvert.SerializeObject(flight);

            return(response);
        }