示例#1
0
 //Yeni Müsteri Üye
 public JsonResult Index(Musteri musteri)
 {
     try
     {
         using (KafeEntities kafe = new KafeEntities())
         {
             if (ModelState.IsValid)
             {
                 var musteriEkle = kafe.Musteriler.Add(new Musteriler()
                 {
                     Ad            = musteri.Ad,
                     Eposta        = musteri.Eposta,
                     KullaniciAdi  = musteri.KullaniciAdi,
                     MusteriId     = musteri.MusteriId,
                     Parola        = musteri.Parola,
                     Soyad         = musteri.Soyad,
                     KazanilanPuan = 0,
                 });
                 kafe.SaveChanges();
             }
         }
     }
     catch (Exception ex)
     {
         return(Json(new { msg = "Hatalı Üyelik" + ex.Message.ToString(), durum = false, }, JsonRequestBehavior.AllowGet));
     }
     return(Json(new { msg = "Başarılı", durum = true }, JsonRequestBehavior.AllowGet));
 }
示例#2
0
 public ActionResult Index(Musteri musteri)
 {
     try
     {
         using (KafeEntities kafe = new KafeEntities())
         {
             foreach (var item in musteriYonetimi.HepsiniGetir())
             {
                 if (item.KullaniciAdi == musteri.KullaniciAdi || item.Eposta == musteri.Eposta)
                 {
                     return(Json(new { msg = "Var olan bir kullanıcı adı ve Eposta girdiniz", durum = false }, JsonRequestBehavior.AllowGet));
                 }
             }
             if (ModelState.IsValid)
             {
                 var musteriEkle = kafe.Musteriler.Add(new Musteriler()
                 {
                     Ad            = musteri.Ad,
                     Eposta        = musteri.Eposta,
                     KullaniciAdi  = musteri.KullaniciAdi,
                     MusteriId     = musteri.MusteriId,
                     Parola        = musteri.Parola,
                     Soyad         = musteri.Soyad,
                     KazanilanPuan = 0,
                 });
                 kafe.SaveChanges();
             }
         }
     }
     catch (Exception ex)
     {
         return(Json(new { msg = "Hatalı Üye Olma İşlemi" + ex.Message.ToString(), durum = false, }, JsonRequestBehavior.AllowGet));
     }
     return(Json(new { msg = "Başarili", durum = true }, JsonRequestBehavior.AllowGet));
 }