Esempio n. 1
0
        public ActionResult Livre(string id = "")
        {
            using (var dal = new Dal())
            {
                var listeLivresOuAuteurs = dal.RechercherLivreOuAuteur(id);

                return View(listeLivresOuAuteurs);
            }
        }