| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CG67.FicheCollege.Domaine
- {
- /// <summary>
- /// si l'instance existe, c'est que le collège participe ...
- /// du coup, seul le libelle sufit.
- /// </summary>
- [Serializable]
- public class ProjetPilote
- {
- /// <summary>
- /// Libellé du projet pilote.
- /// </summary>
- private string mLibelle;
- private bool mParticipe;
- private string mInitiateur;
- /// <summary>
- /// Obtient ou définit le libellé du projet pilote.
- /// </summary>
- public string Libelle
- {
- get { return mLibelle; }
- set { mLibelle = value; }
- }
- public bool Participe
- {
- get { return mParticipe; }
- set { mParticipe = value; }
- }
- public string Initiateur
- {
- get { return mInitiateur; }
- set { mInitiateur = value; }
- }
-
- public ProjetPilote(string libelle,bool participe , string initiateur)
- {
- mLibelle = libelle;
- mParticipe = participe;
- mInitiateur = initiateur;
- }
- }
- }
|