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