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