namespace VirtualSrm.Common.Entity { /// /// 策略上下文类 /// public class Context { //使用策略 private IStrategy Strategy; public Context(IStrategy strategy) { this.Strategy = strategy; } /// /// 调用方法 /// public void Invoke() { Strategy.DoJob(); } } }