コード例 #1
0
[RequireHttps] //apply to all actions in controller
#endif
        public ActionResult Shops()
        {
            StoreGateway sg = new StoreGateway();
            List<DisplayStore> shops = sg.GetPublicShops(0, 30);
            return View(shops);
        }