예제 #1
0
파일: HomeController.cs 프로젝트: TuytN/abc
 /// <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"));
 }