123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Data;
- namespace SysBaseLibs
- {
- public interface INpId
- {
- // Properties
- string Id { get; set; }
- }
- public interface IErrorMsg
- {
- // Properties
- string ErrorMsg { get; set; }
- }
- public interface ITableInfo
- {
- void CreateTableInfo(DataRow poRow);
- }
- public interface IMyControls
- {
- void SetEnabled(bool pbEnble);
- void ClearValue(string DefaultValue);
- }
- }
|