Пример #1
0
        // GET: Authors/Create
        public ActionResult Create()
        {
            var author = new Author();

            author.BuildBooks();
            return(View(author));
        }