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 { [CodeEditor(Editable = Editable.Enabled, Visible = Visible.Default)] public string Code { get; set; } = ""; [MemoEditor(Visible = Visible.Default)] public string Description { get; set; } = ""; [EntityRelationship(DeleteAction.Cascade)] public JobLink Job { get; set; } [EntityRelationship(DeleteAction.SetNull)] public ProductLink Product { get; set; } [EntityRelationship(DeleteAction.SetNull)] public JobDocumentSetLink JobDocumentSet { get; set; } } }