public ActionResult Details(int id) { var model = _rssFeedService.GetRssFeedDetailModel(id); if (model == null) { SetErrorMessage(T("RSSFeed_Message_ObjectNotFound")); return(RedirectToAction("Index")); } return(View(model)); }