예제 #1
0
파일: TweetHub.cs 프로젝트: shehroz/TClone
 public void GetAll()
 {
     foreach (var tweet in repository.GetCurentUserTweets(true))
     {
         Caller.AddAll(tweet.ToJson(HttpContext.Current.User.Identity.Name));
     }
 }