public ActionResult DeleteConfirmed(int id)
        {
            editorial editorial = db.editorials.Find(id);

            db.editorials.Remove(editorial);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "EditorialId,Title,Description,Image,PubDate")] editorial editorial)
 {
     if (ModelState.IsValid)
     {
         db.Entry(editorial).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(editorial));
 }
        public ActionResult Create([Bind(Include = "EditorialId,Title,Description,Image,PubDate")] editorial editorial)
        {
            if (ModelState.IsValid)
            {
                db.editorials.Add(editorial);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(editorial));
        }
        // GET: /editorial/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            editorial editorial = db.editorials.Find(id);

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