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