public ActionResult sepetcikar(int urunId, int adet) //Ajax
        {
            int Kullanici = int.Parse(Session["Login"].ToString());
            var gonder    = SepetRepo.SanalSepeteCikar(Kullanici, urunId, adet);

            return(Json(gonder, JsonRequestBehavior.AllowGet));
        }
        public ActionResult UrunSepetCikar(string Malzemekodu) //Ajax
        {
            int Kullanici = int.Parse(Session["User"].ToString());
            var gonder    = SepetRepo.SanalSepeteCikar(Kullanici, Malzemekodu);

            if (gonder != false)
            {
                return(Json(new { success = true, responseText = "Bu Ürün Başarıyla Güncellendi" }, JsonRequestBehavior.AllowGet));
            }
            else
            {
                return(Json(new { success = false, responseText = "Ürün Güncelleme Başarısız Oldu!" }, JsonRequestBehavior.AllowGet));
            }
        }