using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel.Composition; namespace MediII.Adapter.BizComponent.Base { /// /// Biz处理前后的行为 /// public interface IBizBehavior { /// /// 消息处理之后 /// /// 消息ID /// 回复信息 /// true成功 false失败 void AfterProcess(string id,string messageID, string ack, bool successed); /// /// 消息处理之前 /// /// 消息ID /// 消息 void BeforeProcess(string id, string messageID, string message, string Version); } }