public JsonResult GetListeCommande(string dateDebut, string dateFin) { try { Commande commande = new Commande(); List <Commande> liste = commande.GetListeCommande(dateDebut, dateFin); return(Json(liste)); } catch (Exception exception) { return(Json(exception.Message)); } }