コード例 #1
0
        /// <summary>
        /// Gets archived tournaments from TournamentService
        /// </summary>
        /// <returns>View with collection of archived tournaments</returns>
        public ActionResult Archived()
        {
            var archivedTournaments = _tournamentService.GetArchived().ToList();

            return(View(archivedTournaments));
        }