public ActionResult DeleteConfirmed(int id)
        {
            PagoPrestamos pagoPrestamos = db.PagoPrestamos.Find(id);

            db.PagoPrestamos.Remove(pagoPrestamos);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "idPago,idPrestamo,idCliente,fechaPago,cuota,capital,interes,balance")] PagoPrestamos pagoPrestamos)
 {
     if (ModelState.IsValid)
     {
         db.Entry(pagoPrestamos).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.idCliente  = new SelectList(db.Clientes, "idCliente", "cedula", pagoPrestamos.idCliente);
     ViewBag.idPrestamo = new SelectList(db.Prestamos, "idPrestamo", "idPrestamo", pagoPrestamos.idPrestamo);
     return(View(pagoPrestamos));
 }
        // GET: PagoPrestamos/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            PagoPrestamos pagoPrestamos = db.PagoPrestamos.Find(id);

            if (pagoPrestamos == null)
            {
                return(HttpNotFound());
            }
            return(View(pagoPrestamos));
        }
        // GET: PagoPrestamos/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            PagoPrestamos pagoPrestamos = db.PagoPrestamos.Find(id);

            if (pagoPrestamos == null)
            {
                return(HttpNotFound());
            }
            ViewBag.idCliente  = new SelectList(db.Clientes, "idCliente", "cedula", pagoPrestamos.idCliente);
            ViewBag.idPrestamo = new SelectList(db.Prestamos, "idPrestamo", "idPrestamo", pagoPrestamos.idPrestamo);
            return(View(pagoPrestamos));
        }
        public JsonResult PagoPrestamo(PagoPrestamos DatosA)
        {
            var success = 1;

            using (var context = new BancoNMEntities())
            {
                PagoPrestamos pagoPrestamos = new PagoPrestamos()
                {
                    idPrestamo = DatosA.idPrestamo,
                    idCliente  = DatosA.idCliente,
                    fechaPago  = DatosA.fechaPago,
                    cuota      = DatosA.cuota,
                    capital    = DatosA.capital,
                    interes    = DatosA.interes,
                    balance    = DatosA.balance
                };

                context.PagoPrestamos.Add(pagoPrestamos);
                context.SaveChanges();


                return(Json(success));
            }
        }