using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareCommon.Util { /// /// 使用职责链模式的通用接口 /// public interface IHandler { void Handle(); } }