9f41d4a543825614faba2d4e5eb6a3d3d182eb52.svn-base 367 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections;
  3. namespace Core.Mes.ServerFrameWork
  4. {
  5. /// <summary>
  6. /// 服务端组件和子服务的基础接口
  7. /// </summary>
  8. public interface IServerBase : IDisposable
  9. {
  10. /// <summary>
  11. /// 访问数据库组件
  12. /// </summary>
  13. Hashtable DBManagerList{set; get;}
  14. /// <summary>
  15. /// 类的描述信息
  16. /// </summary>
  17. string Description{get;}
  18. }
  19. }