123456789101112131415161718192021 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Equipment))]
- public class JobEquipment : Entity, IPersistent, IRemotable, IManyToMany<Job, Equipment>, ILicense<EquipmentLicense>
- {
- [EditorSequence(1)]
- [EntityRelationship(DeleteAction.Cascade)]
- public JobLink JobLink { get; set; }
- [EditorSequence(2)]
- [EntityRelationship(DeleteAction.Cascade)]
- public EquipmentLink EquipmentLink { get; set; }
- [EditorSequence(3)]
- [DateEditor]
- public DateTime Certified { get; set; }
- }
- }
|