1234567891011121314151617181920212223242526272829303132 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Digital Forms")]
- public class JobFormDefinition : Entity, IRemotable, IPersistent, ISequenceable, IManyToMany<Job, DigitalForm>, IDigitalForm<Job>,
- ILicense<ProjectManagementLicense>
- {
- [NullEditor]
- public JobLink Job { get; set; }
- [NullEditor]
- [Obsolete("Being Replaced by Form")]
- public QAFormLink QAForm { get; set; }
- public DigitalFormLink Form { get; set; }
- [NullEditor]
- public long Sequence { get; set; }
- protected override void Init()
- {
- base.Init();
- {
- Job = new JobLink();
- Form = new DigitalFormLink();
- QAForm = new QAFormLink();
- }
- }
- }
- }
|