SetoutGroupLink.cs 647 B

123456789101112131415161718192021222324252627
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class SetoutGroupLink : EntityLink<SetoutGroup>
  8. {
  9. [CodePopupEditor(typeof(SetoutGroup), CodeColumn = "Name")]
  10. public override Guid ID { get; set; }
  11. public string Name { get; set; }
  12. public DocumentLink OptimizationDocument { get; set; }
  13. public JobLink Job { get; set; }
  14. protected override void Init()
  15. {
  16. Name = "";
  17. OptimizationDocument = new DocumentLink();
  18. Job = new JobLink();
  19. base.Init();
  20. }
  21. }
  22. }