Example #1
0
 public ActionResult PagarCuotasImporteLibre(int pCreditoId, decimal pImporteLibre)
 {
     return(Json(CajaDiarioBL.PagarCuotas(VendixGlobal.GetCajaDiarioId(), pCreditoId, string.Empty, pImporteLibre),
                 JsonRequestBehavior.AllowGet));
 }
Example #2
0
 public ActionResult PagarCuotas(int pCreditoId, string pPlanPago, decimal pImporteRecibido)
 {
     return(Json(CajaDiarioBL.PagarCuotas(VendixGlobal.GetCajaDiarioId(), pCreditoId, pPlanPago, pImporteRecibido),
                 JsonRequestBehavior.AllowGet));
 }