SajectConnectTest.cs 933 B

123456789101112131415161718192021222324252627282930313233
  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 SajetTransSnCheck(ref string sn, string model) => true;
  19. public bool SajetTransStart() => true;
  20. public bool SajetTransWoCheck(ref string workOrder) => true;
  21. }
  22. }