using RTCommunicatorBase; namespace AlarmInfoServerSim.Services { public interface ISendInfoService { bool Open(); bool Send(byte tag, ST_ALARM alarm); event EventHandler<bool>? ConnectionChanged; } }