JobProductMapping.cs 595 B

123456789101112131415161718192021222324
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class JobProductMapping : Entity, IRemotable, IPersistent, ILicense<ProjectManagementLicense>
  8. {
  9. [CodeEditor(Editable = Editable.Enabled)]
  10. public string Code { get; set; }
  11. [MemoEditor]
  12. public string Description { get; set; }
  13. public JobLink Job { get; set; }
  14. public ProductLink Product { get; set; }
  15. public JobProductMapping()
  16. {
  17. Code = "";
  18. Description = "";
  19. }
  20. }
  21. }