| 1234567891011121314151617181920212223242526272829303132 | using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(Product))]    public class GLCode : Entity, IRemotable, IPersistent, ILicense<CoreLicense>, IExportable, IImportable, IMergeable,        IPostableFragment<Invoice>, IPostableFragment<Bill>, IPostableFragment<PurchaseOrder>    {        [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]        public string Code { get; set; }        [TextBoxEditor]        public string Description { get; set; }        [CheckBoxEditor]        public bool Income { get; set; }        [CheckBoxEditor]        public bool Expense { get; set; }        [CheckBoxEditor]        public bool Hidden { get; set; }        [NullEditor]        public string PostedReference { get; set; }        public override string ToString()        {            return string.Format("{0}: {1}", Code, Description);        }    }}
 |