public ActionResult SepetKontrol() //Ajax { int Kullanici = int.Parse(Session["User"].ToString()); var gonder = SepetRepo.SanalSepeteListe(Kullanici); return(Json(gonder, JsonRequestBehavior.AllowGet)); }
public ActionResult sepetlistelekullanicilar(int ID) //Ajax { var gonder = SepetRepo.SanalSepeteListe(ID); return(Json(gonder, JsonRequestBehavior.AllowGet)); }