public JsonResult DecreaseCart(int id) { if (Session["sepet"] != null) { ProductCart cart = Session["sepet"] as ProductCart; cart.DecreaseCart(id); Session["sepet"] = cart; } return(Json("")); }