SetoutGroup.cs 694 B

123456789101112131415161718192021222324252627
  1. using Comal.Classes.Entities;
  2. using InABox.Core;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace Comal.Classes
  7. {
  8. public class SetoutGroup : Entity, IPersistent, IRemotable, ILicense<ManufacturingLicense>
  9. {
  10. [TextBoxEditor(Editable = Editable.Enabled)]
  11. public string Name { get; set; }
  12. public JobLink Job { get; set; }
  13. [Caption("Optimization Document")]
  14. public DocumentLink OptimizationDocument { get; set; }
  15. protected override void Init()
  16. {
  17. Name = "";
  18. Job = new JobLink();
  19. OptimizationDocument = new DocumentLink();
  20. base.Init();
  21. }
  22. }
  23. }