public ActionResult DeleteConfirmed(int id) { IngresosGastosJCL ingresosGastosJCL = db.IngresosGastos.Find(id); db.IngresosGastos.Remove(ingresosGastosJCL); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "Id,Descripcion,EsIngreso,Valor")] IngresosGastosJCL ingresosGastosJCL) { if (ModelState.IsValid) { db.Entry(ingresosGastosJCL).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(ingresosGastosJCL)); }
public ActionResult Create([Bind(Include = "Id,Descripcion,EsIngreso,Valor")] IngresosGastosJCL ingresosGastosJCL) { if (ModelState.IsValid) { ingresosGastosJCL.FechaIngreso = DateTime.Now; db.IngresosGastos.Add(ingresosGastosJCL); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(ingresosGastosJCL)); }
// GET: IngresosGastos/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } IngresosGastosJCL ingresosGastosJCL = db.IngresosGastos.Find(id); if (ingresosGastosJCL == null) { return(HttpNotFound()); } return(View(ingresosGastosJCL)); }