JobStyle.cs 386 B

12345678910111213
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public class JobStyle : Entity, IRemotable, IPersistent, IManyToMany<Job, ProductStyle>, ILicense<ProjectManagementLicense>
  5. {
  6. [EntityRelationship(DeleteAction.Cascade)]
  7. public JobLink Job { get; set; }
  8. [EntityRelationship(DeleteAction.SetNull)]
  9. public ProductStyleLink Style { get; set; }
  10. }
  11. }