From ee3f1aa159ebb326e7c7053501130afa06bf47d4 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Tue, 3 Nov 2020 19:37:52 +0200 Subject: Moved ArcHeadCleaningMotorSpeed to RML => Head Cleaning Parameters. Modified local data store schema to unique machine,collection,key. --- .../Entities/ProcessParametersTableBase.cs | 42 ---------------------- 1 file changed, 42 deletions(-) (limited to 'Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs') diff --git a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs index 172b5f18f..498bafc85 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/ProcessParametersTableBase.cs @@ -91,8 +91,6 @@ namespace Tango.BL.Entities public event EventHandler PressureBuildUpChanged; - public event EventHandler ArcHeadCleaningMotorSpeedChanged; - public event EventHandler ProcessParametersTablesGroupChanged; protected String _name; @@ -1109,37 +1107,6 @@ namespace Tango.BL.Entities } } - protected Double _archeadcleaningmotorspeed; - - /// - /// Gets or sets the processparameterstablebase arc head cleaning motor speed. - /// - - [Column("ARC_HEAD_CLEANING_MOTOR_SPEED")] - - [StringFormat("0.0")] - - [PropertyIndex(30)] - - public Double ArcHeadCleaningMotorSpeed - { - get - { - return _archeadcleaningmotorspeed; - } - - set - { - if (_archeadcleaningmotorspeed != value) - { - _archeadcleaningmotorspeed = value; - - OnArcHeadCleaningMotorSpeedChanged(value); - - } - } - } - protected ProcessParametersTablesGroup _processparameterstablesgroup; /// @@ -1460,15 +1427,6 @@ namespace Tango.BL.Entities RaisePropertyChanged(nameof(PressureBuildUp)); } - /// - /// Called when the ArcHeadCleaningMotorSpeed has changed. - /// - protected virtual void OnArcHeadCleaningMotorSpeedChanged(Double archeadcleaningmotorspeed) - { - ArcHeadCleaningMotorSpeedChanged?.Invoke(this, archeadcleaningmotorspeed); - RaisePropertyChanged(nameof(ArcHeadCleaningMotorSpeed)); - } - /// /// Called when the ProcessParametersTablesGroup has changed. /// -- cgit v1.3.1