Пример #1
0
 public JsonResult GetListeCommandeAnnule(string dateDebut, string dateFin)
 {
     try
     {
         Commande        commande = new Commande();
         List <Commande> liste    = commande.GetListeCommandeAnnule(dateDebut, dateFin);
         return(Json(liste));
     }
     catch (Exception exception)
     {
         return(Json(exception.Message));
     }
 }