Ejemplo n.º 1
0
        public ActionResult SearchPlatforma(int id)
        {
            int         celkem;
            GameDao     hraDao = new GameDao();
            IList <Hra> ucty   = hraDao.GetByPlatforma2(id, out celkem, false);

            celkem         = ucty.Count;
            ViewBag.celkem = celkem;
            return(View("Hra", ucty));
        }