コード例 #1
0
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                ServiceJediClient service = new ServiceJediClient();
                StadeWCF stade = service.getAllStade().ToList().Find(x => x.Id == id);
                if (stade == null)
                {
                    return HttpNotFound();
                }
                service.deleteStade(stade);

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
コード例 #2
0
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                ServiceJediClient service = new ServiceJediClient();
                StadeWCF          stade   = service.getAllStade().ToList().Find(x => x.Id == id);
                if (stade == null)
                {
                    return(HttpNotFound());
                }
                service.deleteStade(stade);

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }