Ejemplo n.º 1
0
        private void btnSubmit_Click(object sender, EventArgs e)
        {
            IGestionEmployes
                gestionEmployes = GestionEmployesBuilderClassFactory.getInterface();

            Ville ville = new Ville(0, textBoxCodeVille.Text, textBoxDescriptionVille.Text);

            gestionEmployes.createVille(ville);

            this.Close();
        }