12345678910111213141516171819 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class JobStyle : Entity, IRemotable, IPersistent, IManyToMany<Job, ProductStyle>, ILicense<ProjectManagementLicense>
- {
- [EntityRelationship(DeleteAction.Cascade)]
- [EditorSequence(1)]
- public JobLink Job { get; set; }
- [EntityRelationship(DeleteAction.SetNull)]
- [EditorSequence(2)]
- public ProductStyleLink Style { get; set; }
- [EditorSequence(3)]
- [MemoEditor]
- public string Note { get; set; } = "";
- }
- }
|