/// <summary> /// get list tweets again and show by Index view /// </summary> /// <returns> Index view with new list tweets </returns> public ActionResult Refresh() { TweetsModel.Tweets = TwitterService.GetAllTweets(); return(RedirectToAction("Index")); }