Exemple #1
0
 public Prestation(string unLibelle, DateTime uneDate, Intervenant unIntervenant)
 {
     libelle       = unLibelle;
     dateSoin      = uneDate;
     l_intervenant = unIntervenant;
     unIntervenant.ajoutePrestation(this);
 }
 //Ajoute une prestation
 public void ajoutePrestation(string unLibelle, DateTime uneDate, Intervenant unIntervenant)
 {
     mesPrestations.Add(new Prestation(unLibelle, uneDate, unIntervenant));
 }