コード例 #1
0
        public string Get(int id)
        {
            FlightPlan flight   = serverM.GetFlightById(id);
            string     response = JsonConvert.SerializeObject(flight);

            return(response);
        }