using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.LgResMgt.Mcms { public interface iCommunication { void Start(); void Stop(); event ReceiveDataHandler ReceiveData; void ChangeProtocol(IProtocol iProtocol); bool Status { get; } bool Show { get; set; } string WeightValue { get; set; } } }