var Produit = Class.create({
  pid: 0,
  cid: 0,
  qte: 0,
  libelle: "",
  
  initialize: function() { }
});


var Client = Class.create({
  cltid: 0,
  etat: 0,
  type: "",
  societe: "",
  genre: "",
  nom: "",
  prenom: "",
  adresseL1: "",
  adresseL2: "",
  cp: "",
  ville: "",
  pays: "",
  tel1: "",
  tel2: "",
  fax: "",
  email: "",
  dateInscription: "",
  ip: "",
  
  initialize: function() { }
});