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 { [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; } } }