12345678910111213141516171819 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Digital Form Subscriptions")]
- public class EmployeeFormSubscription : Entity, IRemotable, IPersistent, IOneToMany<Employee>, ILicense<DigitalFormsLicense>
- {
- public EmployeeLink Employee { get; set; }
- public QAFormLink Form { get; set; }
- protected override void Init()
- {
- base.Init();
- Employee = new EmployeeLink();
- Form = new QAFormLink();
- }
- }
- }
|