123456789101112131415161718 |
- using Cksoft.Unity;
- using DllEapDal;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllBusinessServer
- {
- public interface IBusinessServer
- {
- int Start(ref string errorinfo);
- long GetAccount();
- int GetStatus(ref string errorinfo);
- List<ServerInfo> GetInfo();
- int Stop(ref string errorinfo);
- int ClearInfo(ref string errorinfo);
- }
- }
|