// GET: Admin/ContentSections/Edit public ActionResult Edit(int id) { var sectionToEdit = pageContentService.FindById(id); var foundSection = new ContentSectionViewModel { Id = sectionToEdit.Id, SectionName = sectionToEdit.SectionName, Title = sectionToEdit.Title, Content = sectionToEdit.Content, Image = sectionToEdit.Image, ImageFile = null }; return(View(foundSection)); }