using Cksoft.Unity; using DllEapDal; using DllEapEntity; using System; using System.Collections.Generic; namespace DllScanForFiles { public interface IScanServer { //void StartAll(); List GetMacOrder(); int Start(ref string errorinfo); int GetStatus(ref string errorinfo); int Stop(ref string errorinfo); List GetInfo(); List GetMacOrder(int preid); int Start(string idstr, ref string errorinfo); int Stop(string idstr, ref string errorinfo); int StopCheckThread(ref string errorinfo); } }