public IActionResult ListaCuotasVenta(int ventaId)
        {
            var viewModel = new ListaCuotasIndexViewModel()
            {
                Cuotas = Mapper.Map <List <ListaCuotaViewModel> >(_cuotas.GetAllByVentaId(ventaId, Core.Constants.EstadoCuota.Pendiente))
            };

            return(View("~/Areas/Platform/Views/Cuotas/ListaCuotas.cshtml", viewModel));
        }