Ejemplo n.º 1
0
        public ActionResult Delete(int?id)
        {
            if (id != null)//id istek içerisinde varsa
            {
                SERTIFIKA s = db.SERTIFIKAs.Find(id);
                if (s != null)//id kullanıcılarda varsa
                {
                    db.SERTIFIKAs.Remove(s);
                    db.SaveChanges();
                }
            }

            return(RedirectToAction("Index"));
        }
Ejemplo n.º 2
0
        public ActionResult Create(int?id)
        {
            SERTIFIKA s = new SERTIFIKA();

            if (id != null)
            {
                s = db.SERTIFIKAs.Find(id);
                if (s == null)
                {
                    s = new SERTIFIKA();
                }
            }
            KULLANICI p = SessionHelper <KULLANICI> .GetSessionItem("kullanici");

            ViewData["personel"] = db.PERSONELs.Where(k => k.KULLANICI_REFNO == p.KULLANICI_REFNO).ToList();
            return(View(s));//model binding yapıyoruz.
        }
Ejemplo n.º 3
0
        public ActionResult Create(SERTIFIKA s)
        {
            if (ModelState.IsValid)
            {
                if (s.SERTIFIKA_REFNO == 0)
                {
                    db.SERTIFIKAs.Add(s);
                }
                else
                {
                    db.Entry(s).State = System.Data.Entity.EntityState.Modified;
                }
                db.SaveChanges();
                return(RedirectToAction("Index"));//listeleme yapılıyor.
            }
            KULLANICI p = SessionHelper <KULLANICI> .GetSessionItem("kullanici");

            ViewData["personel"] = db.PERSONELs.Where(k => k.KULLANICI_REFNO == p.KULLANICI_REFNO).ToList();
            return(View(s));//model binding yapıyoruz.
        }