12345678910111213141516171819202122232425 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class SupplierLink : EntityLink<Supplier>
- {
- public SupplierLink() : this(null)
- {
- }
- public SupplierLink(Func<BaseObject>? entity) : base(entity)
- {
- }
- [CodePopupEditor(typeof(Supplier))]
- public override Guid ID { get; set; }
- [CodeEditor(Visible = Visible.Default)]
- public string Code { get; set; }
- [TextBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
- public string Name { get; set; }
- }
- }
|