SalesGLCodeLink.cs 360 B

12345678910111213141516
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class SalesGLCodeLink : BaseGLCodeLink
  6. {
  7. public SalesGLCodeLink(Func<BaseObject>? entity) : base(entity)
  8. {
  9. }
  10. [ComboLookupEditor(typeof(SalesGlCodeLookupGeneratorGenerator))]
  11. [RequiredColumn]
  12. public override Guid ID { get; set; }
  13. }
  14. }