StockWarehouseLink.cs 662 B

1234567891011121314151617181920212223
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class StockWarehouseLink : EntityLink<StockWarehouse>, IStockWarehouse
  6. {
  7. [LookupEditor(typeof(StockWarehouse))]
  8. public override Guid ID { get; set; }
  9. [CodeEditor(Editable = Editable.Hidden)]
  10. public string Code { get; set; }
  11. [TextBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
  12. public string Description { get; set; }
  13. [CheckBoxEditor(Editable = Editable.Hidden)]
  14. public bool Active { get; set; }
  15. [CheckBoxEditor(Editable = Editable.Hidden)]
  16. public bool Default { get; set; }
  17. }
  18. }