using EC.AutoWeightServer.Model.EventArgsEx; using System; namespace EC.AutoWeightServer.IfManager.Scales { /// /// 秤接口 /// public interface IScales { bool StartServer(); bool StopServer(); bool IsOpen(); event EventHandler OnRecData; void RecData(object sender, byte[] buf); } }