// GET: Book/Create public ActionResult Create() { var model = DependencyResolver.Current.GetService <BookDTO>(); ViewBag.AuthorsDropdown = new SelectList(_authorServices.GetAuthorsByLastName(), "ID", "FullName"); ViewBag.GenresDropdown = new SelectList(_genreServices.GetAll(), "ID", "Name"); return(View(model)); }