using System; using System.Collections.Generic; using System.Text; namespace CG67.FicheCollege.Domaine { [Serializable] public class RestaurationExterne { /// /// nom du collège aidant /// private string mNomCollege; /// /// nombre de personnes aidées /// private int mNbrPersonnes; /// /// type d'aide (télérestauration, hébergement, etc...) /// 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; } } }