| 123456789101112131415161718192021222324 | 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 = "";        }    }}
 |