Esempio n. 1
0
        public ActionResult Index(string key)
        {
            //TODO check login
            AppDao     appDao = new AppDao();
            List <App> apps   = appDao.GetApps(key);

            ViewData["Apps"] = apps;
            ViewBag.Title    = "Gripsストア";
            return(View());
        }