private void ListeCompletePersonnel_Load(object sender, EventArgs e)
 {
     this.personnel = new Couche_métier_Personnel.CL_gPcs_Personnel();
     this.dataset = new System.Data.DataSet();
     this.dataset = personnel.pcs_afficherTousLePersonnel("rows");
     this.dgv_liste_complete_personnel.DataSource = this.dataset.Tables["rows"];
 }
 private void ModificationPersonnel_Load(object sender, EventArgs e)
 {
     this.personnel = new Couche_métier_Personnel.CL_gPcs_Personnel();
     this.dataset = new System.Data.DataSet();
 }