1234567891011121314151617181920 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class JobStyle : Entity, IRemotable, IPersistent, IManyToMany<Job, ProductStyle>, ILicense<ProjectManagementLicense>
- {
- [EntityRelationship(DeleteAction.Cascade)]
- public JobLink Job { get; set; }
- [EntityRelationship(DeleteAction.SetNull)]
- public ProductStyleLink Style { get; set; }
- protected override void Init()
- {
- base.Init();
- Job = new JobLink();
- Style = new ProductStyleLink();
- }
- }
- }
|