コード例 #1
0
ファイル: HomeController.cs プロジェクト: gkinsman/StatsBot
        public ActionResult Index()
        {
            ViewBag.Message = "";

            StatRepository repo = new StatRepository();

            ViewBag.Stats = repo.GetStatisticRecords("#rhosquad", 10);
            ViewBag.Topics = repo.GetLastXTopics("#rhosquad", 10);

            return View();
        }