public ActionResult Delete(string id)
        {
            bool ok = flightManager.DeleteServer(id);

            if (!ok)
            {
                return(NotFound(id));
            }
            return(Ok(id));
        }