/// <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)); }
/// <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; }