| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CG67.FicheCollege.Domaine
- {
- [Serializable]
- public class RestaurationExterne
- {
- /// <summary>
- /// nom du collège aidant
- /// </summary>
- private string mNomCollege;
- /// <summary>
- /// nombre de personnes aidées
- /// </summary>
- private int mNbrPersonnes;
- /// <summary>
- /// type d'aide (télérestauration, hébergement, etc...)
- /// </summary>
- private string mTypeRestauration;
-
- public string NomCollege
- {
- get { return mNomCollege; }
- set { mNomCollege = value; }
- }
- public int NbrPersonnes
- {
- get { return mNbrPersonnes; }
- set { mNbrPersonnes = value; }
- }
- public string TypeRestauration
- {
- get { return mTypeRestauration; }
- set { mTypeRestauration = value; }
- }
- public RestaurationExterne(string nomCollege, int nbrPersonnes, string typeRestauration)
- {
- this.mNomCollege = nomCollege;
- this.mNbrPersonnes = nbrPersonnes;
- this.mTypeRestauration = typeRestauration;
- }
- }
- }
|