Beispiel #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            MarkaAvtomobil markaAvtomobil = db.MarkaAvtomobils.Find(id);

            db.MarkaAvtomobils.Remove(markaAvtomobil);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Beispiel #2
0
 public ActionResult Edit([Bind(Include = "Id,Name,SNorm,WNorm,Toplivo,KmMoto,EzdkaPricep,NormaEzdka")] MarkaAvtomobil markaAvtomobil)
 {
     if (ModelState.IsValid)
     {
         db.Entry(markaAvtomobil).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(markaAvtomobil));
 }
Beispiel #3
0
        public ActionResult Create([Bind(Include = "Id,Name,SNorm,WNorm,Toplivo,KmMoto,EzdkaPricep,NormaEzdka")] MarkaAvtomobil markaAvtomobil)
        {
            if (ModelState.IsValid)
            {
                db.MarkaAvtomobils.Add(markaAvtomobil);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(markaAvtomobil));
        }
Beispiel #4
0
        // GET: MarkaAvtomobils/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            MarkaAvtomobil markaAvtomobil = db.MarkaAvtomobils.Find(id);

            if (markaAvtomobil == null)
            {
                return(HttpNotFound());
            }
            return(View(markaAvtomobil));
        }