iCommunication.cs 433 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.StlMes.Client.LgResMgt.Mcms
  6. {
  7. public interface iCommunication
  8. {
  9. void Start();
  10. void Stop();
  11. event ReceiveDataHandler ReceiveData;
  12. void ChangeProtocol(IProtocol iProtocol);
  13. bool Status { get; }
  14. bool Show { get; set; }
  15. string WeightValue { get; set; }
  16. }
  17. }