ILookupEditorControl.cs 321 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using InABox.Core;
  3. namespace InABox.DynamicGrid
  4. {
  5. public interface ILookupEditorControl : IDynamicEditorControl
  6. {
  7. ILookupEditor LookupEditorDefinition { get; }
  8. Dictionary<string, string> OtherColumns { get; }
  9. void LoadLookups(CoreTable values);
  10. }
  11. }