1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ServiceModel;
- using Aitex.Core.Equipment.SusceptorDefine;
- using Aitex.Core.RT.ConfigCenter;
- using Aitex.Platform;
- namespace Aitex.Triton160.Common.Interface
- {
- [ServiceContract]
- [ServiceKnownType(typeof(ModuleName))]
- public interface IInvokeService
- {
- [OperationContract]
- void DoOperation(string operationName, params object[] args);
- }
- }
|