private void select_AClient2_Click( object sender, EventArgs e )
 {
     this.client = new Code.Mapping.Client.CL_gPcs_Client();
     this.dataset = new System.Data.DataSet();
     this.dataset = client.pcs_afficherTousLesClients("rows");
     this.dataGridView1.DataSource = this.dataset.Tables["rows"];
 }
 private void Liste_complete_Load(object sender, EventArgs e)
 {
     this.client = new Code.Mapping.Client.CL_gPcs_Client();
     this.dataset = new System.Data.DataSet();
     this.dataset = client.pcs_afficherTousLesClients("rows");
     this.dgv_liste_complete.DataSource = this.dataset.Tables["rows"];
 }
 private void Modification_Load(object sender, EventArgs e)
 {
     this.dataset = new System.Data.DataSet();
     this.client = new Code.Mapping.Client.CL_gPcs_Client();
 }