IScanServer.cs 610 B

12345678910111213141516171819202122
  1. using Cksoft.Unity;
  2. using DllEapDal;
  3. using DllEapEntity;
  4. using System;
  5. using System.Collections.Generic;
  6. namespace DllScan
  7. {
  8. public interface IScanServer
  9. {
  10. //void StartAll();
  11. List<MacOrder> GetMacOrder();
  12. int Start(ref string errorinfo);
  13. int GetStatus(ref string errorinfo);
  14. int Stop(ref string errorinfo);
  15. List<ServerInfo> GetInfo();
  16. List<MacOrder> GetMacOrder(int preid);
  17. int Start(string idstr, ref string errorinfo);
  18. int Stop(string idstr, ref string errorinfo);
  19. int StopCheckThread(ref string errorinfo);
  20. }
  21. }