@Override
 public void saveRegistro(VoCliente voCliente) throws ErrorDelSistemaException {
   try {
     voCliente.setClienteFecInsert(helperFechas.obtenerDateActual());
     clienteDAO.save(helperVoEntity.toEntity(voCliente));
   } catch (Exception e) {
     throw new ErrorDelSistemaException("Error al guardar el registro.");
   }
 }