Exemplo n.º 1
0
 public virtual void Loue(Adherent adherent)
 {
     this.Adherent = adherent;
 }
Exemplo n.º 2
0
 public virtual void Rendre()
 {
     this.Adherent = null;
 }
Exemplo n.º 3
0
 //Constructeurs
 public Exemplaire()
 {
     this.Etat     = string.Empty;
     this.Ouvrage  = null;
     this.Adherent = null;
 }