Exemple #1
0
        public ActionResult Create(Author author)
        {
            LibraryClient lc = new LibraryClient();

            lc.CreateAuthor(author);
            return(RedirectToAction("Index", "Authors"));
        }