IBIStatusServer.cs 492 B

123456789101112131415161718192021
  1. using Cksoft.Data;
  2. using Cksoft.Unity;
  3. using DllEapDal;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace DllBIStatusServer
  8. {
  9. public interface IBIStatusServer
  10. {
  11. int Start(ref string errorinfo);
  12. long GetAccount();
  13. int GetStatus(ref string errorinfo);
  14. List<ServerInfo> GetInfo();
  15. int Stop(ref string errorinfo);
  16. int ClearInfo(ref string errorinfo);
  17. int RefreshOrders(ref string errorinfo);
  18. }
  19. }