using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class JobProductMapping : Entity, IRemotable, IPersistent, IOneToMany { [CodeEditor(Editable = Editable.Enabled)] public string Code { get; set; } public JobLink Job { get; set; } public ProductLink Product { get; set; } public JobProductMapping() { Code = ""; Job = new JobLink(); Product = new ProductLink(() => this); } } }