namespace iWareModel { /// /// 使用职责链模式的通用接口 /// public interface IHandler { void Handle(); } }