Ejemplo n.º 1
0
 /// <summary>
 /// Ajoute une préstation à la liste de préstation
 /// </summary>
 /// <param name="unLibelle"></param>
 /// <param name="uneDate"></param>
 /// <param name="unIntervenant"></param>
 public void ajouterPrestation(string unLibelle, DateTime uneDate, Intervenant unIntervenant)
 {
     this.mesPrestations.Add(new Prestation(unLibelle, uneDate, unIntervenant));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructeur de la classe Prestation
 /// </summary>
 /// <param name="unLibelle"></param>
 /// <param name="uneDate"></param>
 /// <param name="unIntervenant"></param>
 public Prestation(string unLibelle, DateTime uneDate, Intervenant unIntervenant)
 {
     this.libelle       = unLibelle;
     this.dateSoin      = uneDate;
     this.l_Intervenant = unIntervenant;
 }