using Cksoft.Unity; using DllEapDal; using System; using System.Collections.Generic; using System.Text; namespace DllLogServer { public interface ILogServer { int Start(ref string errorinfo); long GetAccount(); int GetStatus(ref string errorinfo); List GetInfo(); int Stop(ref string errorinfo); } }