SajectConnectTest.cs 887 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MesAdaptor
  7. {
  8. public class SajectConnectTest : ISajetConnect
  9. {
  10. public bool SajetTranFinishFail(MesErrorCode errorCode) => true;
  11. public bool SajetTranFinishSuccess() => true;
  12. public bool SajetTransClose() => true;
  13. public bool SajetTransLog(string data) => true;
  14. public string SajetTransRegisterHeader(string model, string header) => "";
  15. public bool SajetTransReport(ValueReportDatas reportPair) => true;
  16. public bool SajetTransSignIn(ref string data) => true;
  17. public bool SajetTransSnCheck(ref string serialNumber) => true;
  18. public bool SajetTransStart() => true;
  19. public bool SajetTransWoCheck(ref string workOrder) => true;
  20. }
  21. }