JobFormDefinition.cs 816 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. [Caption("Digital Forms")]
  6. public class JobFormDefinition : Entity, IRemotable, IPersistent, ISequenceable, IManyToMany<Job, DigitalForm>, IDigitalForm<Job>,
  7. ILicense<ProjectManagementLicense>
  8. {
  9. [NullEditor]
  10. public JobLink Job { get; set; }
  11. [NullEditor]
  12. [Obsolete("Being Replaced by Form")]
  13. public QAFormLink QAForm { get; set; }
  14. public DigitalFormLink Form { get; set; }
  15. [NullEditor]
  16. public long Sequence { get; set; }
  17. protected override void Init()
  18. {
  19. base.Init();
  20. {
  21. Job = new JobLink();
  22. Form = new DigitalFormLink();
  23. QAForm = new QAFormLink();
  24. }
  25. }
  26. }
  27. }