示例#1
0
        // GET: Books/Delete
        public ActionResult Delete(int id)
        {
            LibraryClient lc = new LibraryClient();

            lc.DeleteBook(id);
            return(RedirectToAction("BookswithAuthors", "BookWithAuthor"));
        }