/// <summary> /// Initialise une nouvelle instance de la classe Prestation. /// </summary> /// <param name="unLibelle">Chaine de caractères unLibelle</param> /// <param name="uneDate">Objet de type DateTime</param> /// <param name="unIntervenant">Objet de type Intervenant</param> public Prestation(string unLibelle, DateTime uneDate, Intervenant unIntervenant) { this.libelle = unLibelle; this.dateSoin = uneDate; this.unIntervenant = unIntervenant; }
/// <summary> /// Ajoute une préstation à la liste de préstation /// </summary> /// <param name="unLibelle">Chaine de caractères unLibelle</param> /// <param name="uneDate">Objet de type DateTime</param> /// <param name="unIntervenant">Objet de type Intervenant</param> public void AjouterPrestation(string unLibelle, DateTime uneDate, Intervenant unIntervenant) { this.mesPrestations.Add(new Prestation(unLibelle, uneDate, unIntervenant)); }