Example #1
0
        public ActionResult Pagar([Bind(Include = "Fecha")] PagoPrestamo pago, int id)
        {
            PrestamoOperations po = new PrestamoOperations();

            ViewBag.Valores = po.Pagar(pago, id);
            return(View("Ticket"));
        }