// GET: Feeds public ActionResult Index() { var feeds = Mapper.Map <IEnumerable <FeedViewModel> >(feedService.GetAll()); return(View(feeds)); }