コード例 #1
0
        // GET: Authors/Delete
        public ActionResult Delete(int id)
        {
            LibraryClient lc = new LibraryClient();

            lc.DeleteAuthr(id);
            return(RedirectToAction("Index", "Authors"));
        }