Пример #1
0
 public virtual void Loue(Adherent adherent)
 {
     this.Adherent = adherent;
 }
Пример #2
0
 public virtual void Rendre()
 {
     this.Adherent = null;
 }
Пример #3
0
 //Constructeurs
 public Exemplaire()
 {
     this.Etat     = string.Empty;
     this.Ouvrage  = null;
     this.Adherent = null;
 }