1234567891011121314151617181920212223 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(StockMovement))]
- public class StockArea : Entity, IStockArea, IRemotable, IPersistent, ILicense<WarehouseLicense>, IExportable, IImportable
- {
- [EditorSequence(4)]
- [CheckBoxEditor]
- public bool Active { get; set; } = true;
- [EditorSequence(1)]
- [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
- public string Code { get; set; }
- [EditorSequence(2)]
- [TextBoxEditor]
- public string Description { get; set; }
- [EditorSequence(3)]
- public StockWarehouseLink Warehouse { get; set; }
- }
- }
|