- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class SalesGLCodeLink : BaseGLCodeLink
- {
- public SalesGLCodeLink(Func<BaseObject>? entity) : base(entity)
- {
- }
- [ComboLookupEditor(typeof(SalesGlCodeLookupGeneratorGenerator))]
- [RequiredColumn]
- public override Guid ID { get; set; }
- }
- }
|