StockLocationLink.cs 623 B

123456789101112131415161718192021222324
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class StockLocationLink : EntityLink<StockLocation>, IStockLocation
  6. {
  7. public StockAreaLink Area { get; set; }
  8. [CodePopupEditor(typeof(StockLocation))]
  9. public override Guid ID { get; set; }
  10. [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
  11. public string Code { get; set; }
  12. [TextBoxEditor(Editable = Editable.Hidden)]
  13. public string Description { get; set; }
  14. public JobLink Job { get; set; }
  15. [NullEditor]
  16. public bool Active { get; set; }
  17. }
  18. }