Exemple #1
0
 public Bartender(Pub pub)
 {
     this.pub = pub;
 }
Exemple #2
0
 public Patron(Pub pub)
 {
     this.pub  = pub;
     this.Name = NameGiver.GetName();
     PrintPatronInfo();
 }