12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MesAdaptor
- {
- public class SajectConnectTest : ISajetConnect
- {
- public bool SajetTranFinishFail(MesErrorCode errorCode) => true;
- public bool SajetTranFinishSuccess() => true;
- public bool SajetTransClose() => true;
- public bool SajetTransLog(string data) => true;
- public string SajetTransRegisterHeader(string model, string header) => "";
- public bool SajetTransReport(ValueReportDatas reportPair) => true;
- public bool SajetTransSignIn(ref string data) => true;
- public bool SajetTransSnCheck(ref string serialNumber) => true;
- public bool SajetTransStart() => true;
- public bool SajetTransWoCheck(ref string workOrder) => true;
- }
- }
|