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