1234567891011121314151617 |
- 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<ServerInfo> GetInfo();
- int Stop(ref string errorinfo);
- }
- }
|