public ActionResult Edit(int id) { using (var bookRepo = new BookRepository()) { var book = bookRepo.Get(id); var model = BookModel.FromDomain(book); return(View(model)); } }