ManufacturingHistorySummary.cs 662 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. [UserTracking(typeof(ManufacturingPacket))]
  6. public class ManufacturingHistorySummary : Entity, IRemotable, IPersistent, ILicense<ManufacturingLicense>
  7. {
  8. public EmployeeLink Employee { get; set; }
  9. public DateTime Date { get; set; }
  10. public TimeSpan ProductiveTime { get; set; }
  11. public TimeSpan UnproductiveTime { get; set; }
  12. public int PacketsCompleted { get; set; }
  13. public string Notes { get; set; }
  14. protected override void Init()
  15. {
  16. base.Init();
  17. Employee = new EmployeeLink();
  18. }
  19. }
  20. }