diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-22 18:34:00 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-22 18:34:00 +0200 |
| commit | 37d47dd053e02118c5b314a3ec5e8f1f2b0fc8e6 (patch) | |
| tree | 9e16b1b90d0398befc08b43bf48be4c3a54da41c /Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs | |
| parent | 112704ab16ceb60490432bcccd897c27fd041092 (diff) | |
| download | Tango-37d47dd053e02118c5b314a3ec5e8f1f2b0fc8e6.tar.gz Tango-37d47dd053e02118c5b314a3ec5e8f1f2b0fc8e6.zip | |
Added new head cleaning parameters support.
Added build up pressure to process parameters.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs index 2d9f1e4fb..16acc7398 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs @@ -89,6 +89,8 @@ namespace Tango.BL.Entities public event EventHandler<Double> LBlowerTempChanged; + public event EventHandler<Double> PressureBuildUpChanged; + public event EventHandler<ProcessParametersTablesGroup> ProcessParametersTablesGroupChanged; protected String _name; @@ -1074,6 +1076,37 @@ namespace Tango.BL.Entities } } + protected Double _pressurebuildup; + + /// <summary> + /// Gets or sets the processparameterstablebase pressure build up. + /// </summary> + + [Column("PRESSURE_BUILD_UP")] + + [StringFormat("0")] + + [PropertyIndex(29)] + + public Double PressureBuildUp + { + get + { + return _pressurebuildup; + } + + set + { + if (_pressurebuildup != value) + { + _pressurebuildup = value; + + OnPressureBuildUpChanged(value); + + } + } + } + protected ProcessParametersTablesGroup _processparameterstablesgroup; /// <summary> @@ -1386,6 +1419,15 @@ namespace Tango.BL.Entities } /// <summary> + /// Called when the PressureBuildUp has changed. + /// </summary> + protected virtual void OnPressureBuildUpChanged(Double pressurebuildup) + { + PressureBuildUpChanged?.Invoke(this, pressurebuildup); + RaisePropertyChanged(nameof(PressureBuildUp)); + } + + /// <summary> /// Called when the ProcessParametersTablesGroup has changed. /// </summary> protected virtual void OnProcessParametersTablesGroupChanged(ProcessParametersTablesGroup processparameterstablesgroup) |
