ILogServer.cs 372 B

12345678910111213141516
  1. using Cksoft.Unity;
  2. using DllEapDal;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace DllEapBll.SignalR
  7. {
  8. public interface ILogServer
  9. {
  10. int Start(ref string errorinfo);
  11. long GetAccount();
  12. int GetStatus(ref string errorinfo);
  13. List<ServerInfo> GetInfo();
  14. int Stop(ref string errorinfo);
  15. }
  16. }