// GET: Hotel/Edit/5
        public ActionResult Edit(int id)
        {
            demandeconsultationenligne h = a.getConsultationById(id);

            a.deleteConsultationById(id);
            return(View(h));
        }