Example #1
0
        // GET: Tag
        public ActionResult Tag(Guid playerId)
        {
            var dalChampionPool = new DALChampionPool();
            var dalTag          = new DALTag();

            ViewBag.MyChampionPool  = dalChampionPool.getChampionPool(playerId);
            ViewBag.PlayerId        = playerId;
            ViewBag.Nickname        = new DAL().getPlayerById(playerId).Nickname;
            ViewBag.ListTags        = SelectListHelper.getAllTags(playerId);
            ViewBag.ListChampionTag = dalTag.GetAllChampionTagsByPlayerId(playerId);
            var tags = dalTag.GetAllTagsByPlayerId(playerId);

            return(View(tags));
        }