public ActionResult ReporteCliente(ReporteClienteModel cliente)
 {
     if (ModelState.IsValid)
     {
         List<CuentaUsuario> listacl = db.CuentaUsuario.AsNoTracking().Where(c => c.puntos > cliente.puntos && c.estado == true && c.codPerfil == 1).ToList();
         if (listacl != null) TempData["ListaPU"] = listacl;
         else TempData["ListaPU"] = null;
         return RedirectToAction("ReporteCliente", "CuentaUsuario");
     }
     TempData["ListaPU"] = null;
     return RedirectToAction("ReporteCliente", "CuentaUsuario");
 }