public ActionResult Create(CLIENTE cliente)
 {
     if (ModelState.IsValid)
     {
         if (context.insertarCliente(cliente))
         {
             return(RedirectToAction("Index"));
         }
         else
         {
             ModelState.AddModelError(string.Empty, "Cliente ya existe");
             return(View(cliente));
         }
     }
     else
     {
         return(View(cliente));
     }
 }