public Pursuit(string name, SchoolGirl mm)
 {
     this.name = name;
     this.mm   = mm;
 }
Exemple #2
0
 public Proxy(string name, SchoolGirl mm)
 {
     this.pursuitProxy = new Pursuit(name, mm);
 }
 public Pursuit(SchoolGirl mm)
 {
     this.mm = mm;
 }