public ActionResult Güncelle(Müsterikayıt P) { var güncelle = db.Müsterikayıt.Find(P.Mno); güncelle.Tc = P.Tc; güncelle.Ad = P.Ad; güncelle.Soyad = P.Soyad; güncelle.Telefon = P.Telefon; güncelle.Email = P.Email; güncelle.Reztarih = P.Reztarih; güncelle.Kisisayı = P.Kisisayı; db.SaveChanges(); return(RedirectToAction("Services")); }
public ActionResult Ekle(Müsterikayıt P) { db.Müsterikayıt.Add(P); db.SaveChanges(); return(RedirectToAction("Services")); }