|
|
@@ -14,7 +14,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
/// <summary>
|
|
|
/// Nombre total de rationnaire.
|
|
|
/// </summary>
|
|
|
- private int mNbrPersonnes;
|
|
|
+ private int mNbrRepasJourRestauration;
|
|
|
|
|
|
/// <summary>
|
|
|
/// Nombre total de de repas annuels.
|
|
|
@@ -50,10 +50,10 @@ namespace CG67.FicheCollege.Domaine
|
|
|
/// <summary>
|
|
|
/// Obtient ou définit le nombre total de rationnaire.
|
|
|
/// </summary>
|
|
|
- public int NbrPersonnes
|
|
|
+ public int NbrRepasJourRestauration
|
|
|
{
|
|
|
- get { return mNbrPersonnes; }
|
|
|
- set { mNbrPersonnes = value; }
|
|
|
+ get { return mNbrRepasJourRestauration; }
|
|
|
+ set { mNbrRepasJourRestauration = value; }
|
|
|
}
|
|
|
public int NbrRepas
|
|
|
{
|
|
|
@@ -99,11 +99,11 @@ namespace CG67.FicheCollege.Domaine
|
|
|
|
|
|
}
|
|
|
|
|
|
- public Restauration(int annee, string codeRNE, int nbrPersonnes,int nbrRepas, bool production, string délégationSP, string heberge, string estHebergePar, string telerestaure, string estTelerestaurePar)
|
|
|
+ public Restauration(int annee, string codeRNE, int nbrRepasJourRestauration,int nbrRepas, bool production, string délégationSP, string heberge, string estHebergePar, string telerestaure, string estTelerestaurePar)
|
|
|
{
|
|
|
this.mAnnee = annee;
|
|
|
this.mCodeRNE = codeRNE;
|
|
|
- this.mNbrPersonnes = nbrPersonnes;
|
|
|
+ this.mNbrRepasJourRestauration = nbrRepasJourRestauration;
|
|
|
this.mNbrRepas = nbrRepas;
|
|
|
this.mProduction = production;
|
|
|
this.mDélégationSP = délégationSP;
|