public ActionResult AjouterCommandeVerif(CCommande com)
        {
            CDal dal = new CDal();

            com.Plat = dal.GetPlatById(com.Plat.Id); //Seul l'id est set, ici on met le "reste" avec
            dal.AjouterCommande(com);
            return(RedirectToAction("ListCommande"));
        }
        //Genere
        public void Generer()
        {
            CDal dal = new CDal();

            dal.AjouterCommande(this);
        }