public async Task <IActionResult> Grabar( int idCliente, string nombres, string apellidos, string pais, string ciudad, string telefono) { var customer = new Customer() { FirstName = nombres, LastName = apellidos, City = ciudad, Country = pais, Phone = telefono }; var exito = true; if (idCliente == -1) { exito = await CustomerRepository.Insertar(customer); } else { customer.Id = idCliente; exito = await CustomerRepository.Actualizar(customer); } return(Json(exito)); }