Beispiel #1
0
        // GET: Demande/Details/5
        public ActionResult Details(int id)
        {
            demande d = a.getDemandeById(id);

            if (d == null)
            {
                return(HttpNotFound());
            }
            return(View(d));
        }