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