public ActionResult Create(BookViewModel bookVm) { var book = bookVm.MapBook(); bookRepository.Add(book); return(RedirectToAction("Index")); }