|
|
@@ -31,6 +31,12 @@ namespace CG67.FicheCollege.Domaine
|
|
|
/// Commentaire à propos du tableau d'évolution des effectifs de n-10 à n+5
|
|
|
/// </summary>
|
|
|
private string mTableauEffectif;
|
|
|
+
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Titre du grapihque personnalisé
|
|
|
+ /// </summary>
|
|
|
+ private string mTitreGraph;
|
|
|
|
|
|
public string SecteurRecrutement
|
|
|
{
|
|
|
@@ -61,9 +67,13 @@ namespace CG67.FicheCollege.Domaine
|
|
|
get { return mTableauEffectif; }
|
|
|
set { mTableauEffectif = value; }
|
|
|
}
|
|
|
+ public string TitreGraph
|
|
|
+ {
|
|
|
+ get { return mTitreGraph; }
|
|
|
+ set { mTitreGraph = value; }
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- public Commentaires(string secteurRecrutement, string previsionEffectifATC, string programmationTravaux, string amenagementsParticuliers, string interventionsRemarquables, string tableauEffectif)
|
|
|
+ public Commentaires(string secteurRecrutement, string previsionEffectifATC, string programmationTravaux, string amenagementsParticuliers, string interventionsRemarquables, string tableauEffectif, string titreGraph)
|
|
|
{
|
|
|
this.mSecteurRecrutement = secteurRecrutement;
|
|
|
this.mPrevisionEffectifATC = previsionEffectifATC;
|
|
|
@@ -71,6 +81,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
this.mAmenagementsParticuliers = amenagementsParticuliers;
|
|
|
this.mInterventionsRemarquables = interventionsRemarquables;
|
|
|
this.mTableauEffectif = tableauEffectif;
|
|
|
+ this.mTitreGraph = titreGraph;
|
|
|
}
|
|
|
|
|
|
}
|