diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-03-04 15:49:59 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-03-04 15:49:59 +0200 |
| commit | 1746d2c7f601f44c23399aa6d19661fb7ff937ec (patch) | |
| tree | 829c2a33a7b5c67696c683df5a11780fae620fae /Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs | |
| parent | 56b984bf7c4785cd0bcfd45a174ea802c6d0d471 (diff) | |
| download | Tango-1746d2c7f601f44c23399aa6d19661fb7ff937ec.tar.gz Tango-1746d2c7f601f44c23399aa6d19661fb7ff937ec.zip | |
Fixed several issues with PPC.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs b/Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs index 892f535d5..d4a915a66 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/MachineBase.cs @@ -177,6 +177,7 @@ namespace Tango.BL.Entities if (_organizationguid != value) { _organizationguid = value; + } } } @@ -202,6 +203,7 @@ namespace Tango.BL.Entities if (_machineversionguid != value) { _machineversionguid = value; + } } } @@ -227,6 +229,7 @@ namespace Tango.BL.Entities if (_configurationguid != value) { _configurationguid = value; + } } } @@ -252,6 +255,7 @@ namespace Tango.BL.Entities if (_defaultrmlguid != value) { _defaultrmlguid = value; + } } } @@ -276,6 +280,7 @@ namespace Tango.BL.Entities if (_loadedrmlguid != value) { _loadedrmlguid = value; + } } } @@ -355,6 +360,7 @@ namespace Tango.BL.Entities if (_defaultcolorspaceguid != value) { _defaultcolorspaceguid = value; + } } } @@ -407,6 +413,7 @@ namespace Tango.BL.Entities if (_defaultspooltypeguid != value) { _defaultspooltypeguid = value; + } } } @@ -700,6 +707,11 @@ namespace Tango.BL.Entities { _defaultcolorspace = value; + if (DefaultColorSpace != null) + { + DefaultColorSpaceGuid = DefaultColorSpace.Guid; + } + OnDefaultColorSpaceChanged(value); } @@ -727,6 +739,11 @@ namespace Tango.BL.Entities { _configuration = value; + if (Configuration != null) + { + ConfigurationGuid = Configuration.Guid; + } + OnConfigurationChanged(value); } @@ -779,6 +796,11 @@ namespace Tango.BL.Entities { _machineversion = value; + if (MachineVersion != null) + { + MachineVersionGuid = MachineVersion.Guid; + } + OnMachineVersionChanged(value); } @@ -831,6 +853,11 @@ namespace Tango.BL.Entities { _organization = value; + if (Organization != null) + { + OrganizationGuid = Organization.Guid; + } + OnOrganizationChanged(value); } @@ -858,6 +885,11 @@ namespace Tango.BL.Entities { _defaultrml = value; + if (DefaultRml != null) + { + DefaultRmlGuid = DefaultRml.Guid; + } + OnDefaultRmlChanged(value); } @@ -885,6 +917,11 @@ namespace Tango.BL.Entities { _defaultspooltype = value; + if (DefaultSpoolType != null) + { + DefaultSpoolTypeGuid = DefaultSpoolType.Guid; + } + OnDefaultSpoolTypeChanged(value); } |
