private void buttonSubmit_Click(object sender, EventArgs e) { IGestionEmployes gestionEmployes = GestionEmployesBuilderClassFactory.getInterface(); Societe societe = new Societe(0, textBoxNomSociete.Text, textBoxDescSociete.Text, textBoxNumeroSiret.Text); gestionEmployes.createSociete(societe); this.Close(); }