public JsonResult ListeDeProduitsParCategorieTous()
 {
     try
     {
         return(Json(new
         {
             dataResult = produitDAO.ListeDeProduitParCategorie()
         }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(ThrowJsonError(ex));
     }
 }