static void Main(string[] args) { Beauty mm = new Beauty(); mm.Name = "王雪丽"; Agent at = new Agent(mm); at.SentDoll(); at.SentFlowers(); at.SentChocolate(); Console.Read(); }
public Agent(Beauty mm) { ps = new Pursuit(mm); }
public Pursuit(Beauty mm) { this.mm = mm; }