123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using MECF.Framework.Common.SubstrateTrackings;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.ServiceModel;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.WaferHolder
- {
- [ServiceContract]
- public interface IWaferHolderDataService
- {
-
-
-
-
- [OperationContract]
- List<WaferHolderInfo> GetAllWaferHolderDatas();
-
-
-
-
- [OperationContract]
- WaferHolderInfo GetWaferHolderDataByLocation(string location);
-
-
-
-
-
- [OperationContract]
- int UpdateWaferHolderEnable(string waferHolderId, bool enable);
-
-
-
-
-
-
- [OperationContract]
- int AddWaferHolderData(int bufferId, WaferHolderInfo waferHolderInfo);
-
-
-
-
-
-
- [OperationContract]
- int UpdateWaferHolderData(string waferHolderId, WaferHolderInfo info,bool sync);
-
-
-
-
-
- [OperationContract]
- int DeleteWaferHolderData(string waferHolderId);
- }
- }
|