ILogServer.cs 368 B

1234567891011121314151617
  1. using Cksoft.Unity;
  2. using DllEapDal;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace DllLogServer
  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. }