| 123456789101112131415161718192021222324252627 | using System;using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(ManufacturingPacket))]    public class ManufacturingHistorySummary : Entity, IRemotable, IPersistent, ILicense<ManufacturingLicense>    {        public EmployeeLink Employee { get; set; }        public DateTime Date { get; set; }        public TimeSpan ProductiveTime { get; set; }        public TimeSpan UnproductiveTime { get; set; }        public int PacketsCompleted { get; set; }        public string Notes { get; set; }        protected override void Init()        {            base.Init();            Employee = new EmployeeLink();        }    }}
 |