diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-12-20 15:47:33 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-12-20 15:47:33 +0200 |
| commit | 5ab11fca7d8094678b1c675cf6a42011f7f2c3de (patch) | |
| tree | 9d1fc6c52f47d4d06421a31d22223640d34c3a42 /Software/Visual_Studio/Tango.BL/DTO | |
| parent | fd24c47e3c812d00e5d3889dd646ba9f3d834297 (diff) | |
| parent | ad251a8c9af9b1728cc53acfe672cee83949c71b (diff) | |
| download | Tango-5ab11fca7d8094678b1c675cf6a42011f7f2c3de.tar.gz Tango-5ab11fca7d8094678b1c675cf6a42011f7f2c3de.zip | |
Merged Thread Extensions Bugs branch.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
3 files changed, 67 insertions, 20 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTO.cs new file mode 100644 index 000000000..2509ebf49 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTO.cs @@ -0,0 +1,14 @@ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.DTO +{ + public class ColorProcessInkUptakeDTO : ColorProcessInkUptakeDTOBase + { + + } +} diff --git a/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTOBase.cs new file mode 100644 index 000000000..2046b2395 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/DTO/ColorProcessInkUptakeDTOBase.cs @@ -0,0 +1,49 @@ + +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Tango Observables Generator +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. Do not modify! +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Entities; + +namespace Tango.BL.DTO +{ + public abstract class ColorProcessInkUptakeDTOBase : ObservableEntityDTO<ColorProcessInkUptakeDTO, ColorProcessInkUptake> + { + + /// <summary> + /// color process parameters guid + /// </summary> + public String ColorProcessParametersGuid + { + get; set; + } + + /// <summary> + /// ink uptake zone + /// </summary> + public Int32 InkUptakeZone + { + get; set; + } + + /// <summary> + /// ink value + /// </summary> + public Nullable<Int32> InkValue + { + get; set; + } + + } +} diff --git a/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs index 3c569ce30..fd33dcfd7 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/RubbingResultDTOBase.cs @@ -46,22 +46,6 @@ namespace Tango.BL.DTO } /// <summary> - /// gs 100 min - /// </summary> - public Nullable<Int32> Gs100Min - { - get; set; - } - - /// <summary> - /// gs 100 max - /// </summary> - public Nullable<Int32> Gs100Max - { - get; set; - } - - /// <summary> /// deltae cie 200 /// </summary> public Nullable<Double> DeltaeCie200 @@ -70,17 +54,17 @@ namespace Tango.BL.DTO } /// <summary> - /// gs 200 min + /// gs 100 /// </summary> - public Nullable<Int32> Gs200Min + public Nullable<Double> Gs100 { get; set; } /// <summary> - /// gs 200 max + /// gs 200 /// </summary> - public Nullable<Int32> Gs200Max + public Nullable<Double> Gs200 { get; set; } |
