Explorar o código

PRS CLASSES - added description to Job Product Mapping

Nick-PRSDigital@bitbucket.org %!s(int64=2) %!d(string=hai) anos
pai
achega
797a635759
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      prs.classes/Entities/Job/JobProductMapping.cs

+ 4 - 0
prs.classes/Entities/Job/JobProductMapping.cs

@@ -9,12 +9,16 @@ namespace Comal.Classes
     {
         [CodeEditor(Editable = Editable.Enabled)]
         public string Code { get; set; }
+
+        [MemoEditor]
+        public string Description { get; set; }
         public JobLink Job { get; set; }
         public ProductLink Product { get; set; }
 
         public JobProductMapping()
         {
             Code = "";
+            Description = "";
             Job = new JobLink();
             Product = new ProductLink(() => this);
         }