public JsonResult TestExistence(string num_ticket) { try { Commande commande = new Commande(); Boolean reponse = commande.TestExistence(num_ticket); return(Json(reponse)); } catch (Exception exception) { return(Json(exception.Message)); } }