public ActionResult DeleteConfirmed(int id)
        {
            TRA_Adeudo tRA_Adeudo = db.TRA_Adeudo.Find(id);

            db.TRA_Adeudo.Remove(tRA_Adeudo);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "id,nroTramite,clave,cuenta,clavecat,baseACalcular,baseGravable,impuesto,recargos,CargoExtra,condoImpuesto,condoRecargo,totalAdeudo,fechaIngreso,fechaEntrega,fechaGeneracionAdeudo,fechaInicioRecargos,LeyIngresos,DiasTranscurridos,ValorFiscal,ValorComercial,ValorReferido,Pagado,Descuento,MotivoDescuento,AñoLeyIngresos,Porcentaje")] TRA_Adeudo tRA_Adeudo)
 {
     if (ModelState.IsValid)
     {
         db.Entry(tRA_Adeudo).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(tRA_Adeudo));
 }
        // GET: TRA_Adeudo/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            TRA_Adeudo tRA_Adeudo = db.TRA_Adeudo.Find(id);

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