diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-12-18 21:05:38 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-12-18 21:05:38 +0200 |
| commit | 44af6a05f13cff1defd8ef4a01c4ecdbd7833c33 (patch) | |
| tree | 4747a57757f8206bdc97826a9febf1685f0cf341 /Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs | |
| parent | 68916b0c7e3322ff1ca8b45ed789973a23ccac51 (diff) | |
| download | Tango-44af6a05f13cff1defd8ef4a01c4ecdbd7833c33.tar.gz Tango-44af6a05f13cff1defd8ef4a01c4ecdbd7833c33.zip | |
Changed DTO's to include byte[] when generated but mapped by reference.
More improvements to action logs.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs index 8419055c7..2091e5e57 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/ProcessParametersTablesGroupDTO.cs @@ -9,6 +9,16 @@ namespace Tango.BL.DTO { public class ProcessParametersTablesGroupDTO : ProcessParametersTablesGroupDTOBase { + public List<ProcessParametersTableDTO> ProcessParametersTables { get; set; } + public ProcessParametersTablesGroupDTO() + { + ProcessParametersTables = new List<ProcessParametersTableDTO>(); + } + + protected override string OnGetActionLogName() + { + return $"Process Group '{Name}'"; + } } } |
