1234567891011121314151617181920212223242526272829303132 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Linq.Expressions;
- using System.Text;
- namespace Comal.Classes
- {
- public class JobProductMapping : Entity, IRemotable, IPersistent, ILicense<ProjectManagementLicense>
- {
-
- [EntityRelationship(DeleteAction.Cascade)]
- [NullEditor]
- public JobLink Job { get; set; }
-
- [CodeEditor(Editable = Editable.Enabled, Visible = Visible.Default)]
- [EditorSequence(1)]
- public string Code { get; set; } = "";
- [MemoEditor(Visible = Visible.Default)]
- [EditorSequence(2)]
- public string Description { get; set; } = "";
-
- [EntityRelationship(DeleteAction.SetNull)]
- [EditorSequence(3)]
- public ProductLink Product { get; set; }
- [EntityRelationship(DeleteAction.SetNull)]
- [EditorSequence(3)]
- public JobDocumentSetLink JobDocumentSet { get; set; }
- }
- }
|