| 1234567891011121314151617181920212223242526272829 | using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(User))]    public class WindowTracker : Entity, IRemotable, IPersistent, ILicense<CoreLicense>    {        [NullEditor]        public EmployeeLink Employee { get; set; }        [TextBoxEditor]        public string Window { get; set; }        public JobLink Job { get; set; }        public JobITPLink ITP { get; set; }        public ActivityLink Activity { get; set; }        protected override void Init()        {            base.Init();            Employee = new EmployeeLink();            Job = new JobLink();            ITP = new JobITPLink();            Activity = new ActivityLink();        }    }}
 |