| 123456789101112131415161718192021222324 | using System;using InABox.Core;namespace Comal.Classes{    public class StockLocationLink : EntityLink<StockLocation>, IStockLocation    {        public StockAreaLink Area { get; set; }        [CodePopupEditor(typeof(StockLocation))]        public override Guid ID { get; set; }        [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]        public string Code { get; set; }        [TextBoxEditor(Editable = Editable.Hidden)]        public string Description { get; set; }        public JobLink Job { get; set; }        [NullEditor]        public bool Active { get; set; }    }}
 |