Example #1
0
        public ActionResult Index()
        {
            ViewBag.Message = "";

            StatRepository repo = new StatRepository();

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

            return View();
        }