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); } }