Пример #1
0
        public ActionResult DraftHistory()
        {
            var player = User.Identity.Name;
            var model  = FileDatabase.GetHistoryDbForPlayer(player);

            model.AllCards = FileDatabase.GetAllCards();
            return(this.View("Drafthistory", model));
        }