public ActionResult DeleteConfirmed(int id)
        {
            TIPOS_PAGOS tIPOS_PAGOS = db.TIPOS_PAGOS.Find(id);

            db.TIPOS_PAGOS.Remove(tIPOS_PAGOS);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "COD_TIPO_PAGO,TIPO_PAGO")] TIPOS_PAGOS tIPOS_PAGOS)
 {
     if (ModelState.IsValid)
     {
         db.Entry(tIPOS_PAGOS).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(tIPOS_PAGOS));
 }
        public ActionResult Create([Bind(Include = "COD_TIPO_PAGO,TIPO_PAGO")] TIPOS_PAGOS tIPOS_PAGOS)
        {
            if (ModelState.IsValid)
            {
                db.TIPOS_PAGOS.Add(tIPOS_PAGOS);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

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

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