diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-02-16 17:35:00 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-02-16 17:35:00 +0200 |
| commit | 6013f5eb39578d46f78c6901058272e9ac31db40 (patch) | |
| tree | 7a0ab7c5779cc5e2f6e5c1cb82866fd79a67ee35 /Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs | |
| parent | 6e7ee481279d9d0982fbf925e183cb93b46fcfa8 (diff) | |
| download | Tango-6013f5eb39578d46f78c6901058272e9ac31db40.tar.gz Tango-6013f5eb39578d46f78c6901058272e9ac31db40.zip | |
Some Db,BL,PMR changes.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs index 06248ab32..702674850 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs @@ -93,7 +93,7 @@ namespace Tango.BL.Entities public event EventHandler<Double> BtsrFeedingTensionChanged; - public event EventHandler<Double> BtsrExitTensionChanged; + public event EventHandler<Double> ExitTensionChanged; public event EventHandler<Double> BtsrThreadLengthOffsetChanged; @@ -1144,32 +1144,32 @@ namespace Tango.BL.Entities } } - protected Double _btsrexittension; + protected Double _exittension; /// <summary> - /// Gets or sets the processparameterstablebase btsr exit tension. + /// Gets or sets the processparameterstablebase exit tension. /// </summary> - [Column("BTSR_EXIT_TENSION")] + [Column("EXIT_TENSION")] [StringFormat("0.0")] [PropertyIndex(31)] - public Double BtsrExitTension + public Double ExitTension { get { - return _btsrexittension; + return _exittension; } set { - if (_btsrexittension != value) + if (_exittension != value) { - _btsrexittension = value; + _exittension = value; - OnBtsrExitTensionChanged(value); + OnExitTensionChanged(value); } } @@ -1536,12 +1536,12 @@ namespace Tango.BL.Entities } /// <summary> - /// Called when the BtsrExitTension has changed. + /// Called when the ExitTension has changed. /// </summary> - protected virtual void OnBtsrExitTensionChanged(Double btsrexittension) + protected virtual void OnExitTensionChanged(Double exittension) { - BtsrExitTensionChanged?.Invoke(this, btsrexittension); - RaisePropertyChanged(nameof(BtsrExitTension)); + ExitTensionChanged?.Invoke(this, exittension); + RaisePropertyChanged(nameof(ExitTension)); } /// <summary> |
