private void AjouterCompte_Click(object sender, EventArgs e)
        {
            if (grdComptes.SelectedRows.Count == 0)
            {
                return;
            }
            Client        client            = clientService.GetClientByCompteId(Util.StringToInt(grdComptes.SelectedRows[0].Cells[0].Value.ToString()));
            AjouterCompte formAjouterCompte = new AjouterCompte(client.Id, clientService, facturationService);

            formAjouterCompte.ShowDialog();
        }
        private void Ajouter_Click(object sender, EventArgs e)
        {
            if (txtAdresse.Text == "" || txtAdresse == null)
            {
                errAdresse.Visible = true;
                return;
            }

            if (txtTelephone.Text == "" || txtTelephone == null)
            {
                errTelephone.Visible = true;
                return;
            }

            if (txtTerritoire.Text == "" || txtTerritoire == null)
            {
                errTerritoire.Visible = true;
                return;
            }

            if ((txtRaisonSociale.Text == "" || txtRaisonSociale == null) & ((txtNom.Text == "" || txtNom == null) || (txtPrenom.Text == "" || txtPrenom == null)))
            {
                errNomVide.Visible = true;
                return;
            }

            if ((txtRaisonSociale.Text != "" & txtRaisonSociale != null) & ((txtNom.Text != "" & txtNom != null) || (txtPrenom.Text != "" & txtPrenom != null)))
            {
                errNomVide.Visible = true;
                return;
            }

            if (txtRaisonSociale.Text != "" & txtRaisonSociale != null)
            {
                Territoire       territoire = clientService.GetTerritoireByNom(txtTerritoire.Text)[0];
                ClientEntreprise client     =
                    clientService.AddClientEntreprise(new ClientEntreprise(txtTelephone.Text, txtAdresse.Text, territoire, txtRaisonSociale.Text));

                MessageBox.Show(client.raisonSociale);


                AjouterCompte formAjouterCompte = new AjouterCompte(client.Id, clientService, facturationService);
                formAjouterCompte.ShowDialog();
            }

            if (txtNom.Text != "" & txtNom != null)
            {
                Territoire     territoire        = clientService.GetTerritoireByNom(txtTerritoire.Text)[0];
                ClientPersonne client            = clientService.AddClientPersonne(new ClientPersonne(txtTelephone.Text, txtAdresse.Text, territoire, txtNom.Text, txtPrenom.Text));
                AjouterCompte  formAjouterCompte = new AjouterCompte(client.Id, clientService, facturationService);
                formAjouterCompte.ShowDialog();
            }
        }