public ActionResult Details(int?id) { var data = db.GetProjectPunchListByID(id).FirstOrDefault(); ViewBag.PunchListComments = db.GetCommentsByProjectPunchListID(id); if (data == null) { return(HttpNotFound()); } return(View(data)); }