ILookupEditorControl.cs 266 B

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