public DataTable EmployesEnConge()
 {
     try
     {
         DataTable dt = EmployeDAL.Rapport(RapportGlobal.EmployesEnConge);
         return(dt);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message + " - Couche(APP)");
     }
 }
 public DataTable AnniversaireAVenir()
 {
     try
     {
         DataTable dt = EmployeDAL.Rapport(RapportGlobal.AnniversaireProche);
         return(dt);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message + " - Couche(APP)");
     }
 }
 public DataTable ComptageEmployeParDepartement()
 {
     try
     {
         DataTable dt = EmployeDAL.Rapport(RapportGlobal.ComptageEmployeParDepartement);
         return(dt);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message + " - Couche(APP)");
     }
 }