diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-02-26 18:25:52 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-02-26 18:25:52 +0200 |
| commit | afb6bbb2123932b3562e1af993eb847d8147bf58 (patch) | |
| tree | a2c458a077551af5be35a729c4e6d976a92b9387 /Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs | |
| parent | 61f2658295193dca0fdaa58744925d90bd2f4044 (diff) | |
| download | Tango-afb6bbb2123932b3562e1af993eb847d8147bf58.tar.gz Tango-afb6bbb2123932b3562e1af993eb847d8147bf58.zip | |
Major Changes Regarding RML & SPOOL parameters changes!
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs index 1d70aee98..2d9f1e4fb 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs @@ -81,10 +81,6 @@ namespace Tango.BL.Entities public event EventHandler<Double> HeadZone12TempChanged; - public event EventHandler<Double> StSpZone1TempChanged; - - public event EventHandler<Double> StSpZone2TempChanged; - public event EventHandler<Double> RBlowerFlowChanged; public event EventHandler<Double> RBlowerTempChanged; @@ -954,68 +950,6 @@ namespace Tango.BL.Entities } } - protected Double _stspzone1temp; - - /// <summary> - /// Gets or sets the processparameterstablebase st sp zone1 temp. - /// </summary> - - [Column("ST_SP_ZONE1_TEMP")] - - [StringFormat("0.0")] - - [PropertyIndex(21)] - - public Double StSpZone1Temp - { - get - { - return _stspzone1temp; - } - - set - { - if (_stspzone1temp != value) - { - _stspzone1temp = value; - - OnStSpZone1TempChanged(value); - - } - } - } - - protected Double _stspzone2temp; - - /// <summary> - /// Gets or sets the processparameterstablebase st sp zone2 temp. - /// </summary> - - [Column("ST_SP_ZONE2_TEMP")] - - [StringFormat("0.0")] - - [PropertyIndex(22)] - - public Double StSpZone2Temp - { - get - { - return _stspzone2temp; - } - - set - { - if (_stspzone2temp != value) - { - _stspzone2temp = value; - - OnStSpZone2TempChanged(value); - - } - } - } - protected Double _rblowerflow; /// <summary> @@ -1416,24 +1350,6 @@ namespace Tango.BL.Entities } /// <summary> - /// Called when the StSpZone1Temp has changed. - /// </summary> - protected virtual void OnStSpZone1TempChanged(Double stspzone1temp) - { - StSpZone1TempChanged?.Invoke(this, stspzone1temp); - RaisePropertyChanged(nameof(StSpZone1Temp)); - } - - /// <summary> - /// Called when the StSpZone2Temp has changed. - /// </summary> - protected virtual void OnStSpZone2TempChanged(Double stspzone2temp) - { - StSpZone2TempChanged?.Invoke(this, stspzone2temp); - RaisePropertyChanged(nameof(StSpZone2Temp)); - } - - /// <summary> /// Called when the RBlowerFlow has changed. /// </summary> protected virtual void OnRBlowerFlowChanged(Double rblowerflow) |
