12345678910111213141516171819202122 |
- using Cksoft.Unity;
- using DllEapDal;
- using DllEapEntity;
- using System;
- using System.Collections.Generic;
- namespace DllScan
- {
- public interface IScanServer
- {
- //void StartAll();
- List<MacOrder> GetMacOrder();
- int Start(ref string errorinfo);
- int GetStatus(ref string errorinfo);
- int Stop(ref string errorinfo);
- List<ServerInfo> GetInfo();
- List<MacOrder> GetMacOrder(int preid);
- int Start(string idstr, ref string errorinfo);
- int Stop(string idstr, ref string errorinfo);
- int StopCheckThread(ref string errorinfo);
- }
- }
|