using HopFrame.Core.Config; namespace HopFrame.Core.Services; public interface IContextExplorer { public IEnumerable GetTables(); public TableConfig? GetTable(string tableDisplayName); public TableConfig? GetTable(Type tableEntity); public ITableManager? GetTableManager(string tablePropertyName); public ITableManager? GetTableManager(Type tableType); }