コード例 #1
0
 public ActionResult RateLimits()
 {
     var acctAnalyzer = new AccountQueryService();
     var rateLimts = APIQueryService.GetRateLimits(acctAnalyzer.RepositoryInformation());
     return View(rateLimts);
 }
コード例 #2
0
 public ActionResult DoesNotFollowBack()
 {
     var acctAnalyzer = new AccountQueryService();
     var acctList = acctAnalyzer.GetAccountsThatDoNotFollowMeBack();
     return View(acctList);
 }