public JsonResult GetStores() { var model = StoreLogic.GetAllStores(); return(Json(model, JsonRequestBehavior.AllowGet)); }
// GET: Stores public ActionResult Index() { var model = StoreLogic.GetAllStores(); return(View(model)); }