public ActionResult Edit(Guid id) { var model = _Service.FindView(id); if (model == null) { return(HttpNotFound()); } ViewBag.ProfileList = _ProfileService.GetDropListProfileNull(model.ProfileTableId); return(View(model)); }