public JsonResult List() { var list = _heroAppService.GetList(); return(Json(list, JsonRequestBehavior.AllowGet)); }
public ActionResult Index() { return(View(_heroAppService.GetList())); }