- using System.Collections.Generic;
- using InABox.Core;
- namespace InABox.DynamicGrid
- {
- public interface ILookupEditorControl : IDynamicEditorControl
- {
- ILookupEditor LookupEditorDefinition { get; }
- Dictionary<string, string> OtherColumns { get; }
- void LoadLookups(CoreTable values);
- }
- }
|