12345678910111213141516171819202122 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class JobProductMapping : Entity, IRemotable, IPersistent, IOneToMany<Job>
- {
- [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);
- }
- }
- }
|