Field.ILookupService.cs 343 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace OpenVIII.Fields
  3. {
  4. public static partial class Field
  5. {
  6. #region Interfaces
  7. public interface ILookupService
  8. {
  9. #region Methods
  10. IEnumerable<Info> EnumerateAll();
  11. #endregion Methods
  12. }
  13. #endregion Interfaces
  14. }
  15. }