InterfaceList.cs 561 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. namespace SysBaseLibs
  6. {
  7. public interface INpId
  8. {
  9. // Properties
  10. string Id { get; set; }
  11. }
  12. public interface IErrorMsg
  13. {
  14. // Properties
  15. string ErrorMsg { get; set; }
  16. }
  17. public interface ITableInfo
  18. {
  19. void CreateTableInfo(DataRow poRow);
  20. }
  21. public interface IMyControls
  22. {
  23. void SetEnabled(bool pbEnble);
  24. void ClearValue(string DefaultValue);
  25. }
  26. }