static void Main(string[] args) { Pursuing pursuing = new Pursuing() { Name = "橙橙" }; ProxySendFlowers proxy = new ProxySendFlowers(pursuing); proxy.BuyFlowers(); proxy.SendFlowers(); Console.ReadKey(); }
public RealSendFlowers(Pursuing ps) { this.ps = ps; }
public ProxySendFlowers(Pursuing ps) { _realSendFlowers = new RealSendFlowers(ps); }