JobStyle.cs 486 B

1234567891011121314151617
  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. [EditorSequence(3)]
  11. [TextBoxEditor]
  12. public string Note { get; set; } = "";
  13. }
  14. }