1234567891011121314151617181920212223 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class StockWarehouseLink : EntityLink<StockWarehouse>, IStockWarehouse
- {
- [LookupEditor(typeof(StockWarehouse))]
- public override Guid ID { get; set; }
- [CodeEditor(Editable = Editable.Hidden)]
- public string Code { get; set; }
- [TextBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
- public string Description { get; set; }
- [CheckBoxEditor(Editable = Editable.Hidden)]
- public bool Active { get; set; }
- [CheckBoxEditor(Editable = Editable.Hidden)]
- public bool Default { get; set; }
- }
- }
|