aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2023-05-14 16:45:03 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2023-05-14 16:45:03 +0300
commit7d54607a2a61b9a99376b385c40e94257365eb18 (patch)
tree282168fa8e1f602d9e61877aae3968682b2a490e /Software/Visual_Studio/PPC/Modules
parent963f8c4fa2b4da7d875dc223cd70c55e0d5390c1 (diff)
downloadTango-7d54607a2a61b9a99376b385c40e94257365eb18.tar.gz
Tango-7d54607a2a61b9a99376b385c40e94257365eb18.zip
Working on Jerrican Levels Twine X4.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs38
1 files changed, 1 insertions, 37 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs
index c656db8c0..8ea16fe1b 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs
@@ -28,43 +28,7 @@ namespace Tango.PPC.Maintenance.Models
public bool IsEmpty
{
get { return Level <= MachineOperator.EMPTY_MIDTANK_LITERS; }
- }
-
- private bool _bJerricanPresent;
-
- public bool JerricanPresent
- {
- get { return _bJerricanPresent; }
- set {
- _bJerricanPresent = value;
- RaisePropertyChangedAuto();
- }
- }
-
- private bool _fillingTimeoutError;
-
- public bool FillingTimeoutError
- {
- get { return _fillingTimeoutError; }
- set { _fillingTimeoutError = value; RaisePropertyChangedAuto(); }
- }
-
- private bool _midTankEmpty;
-
- public bool MidTankEmpty
- {
- get { return _midTankEmpty; }
- set { _midTankEmpty = value; RaisePropertyChangedAuto();}
- }
-
- private bool _midTankRefillPumpActive;
-
- public bool MidTankRefillPumpActive
- {
- get { return _midTankRefillPumpActive; }
- set { _midTankRefillPumpActive = value; RaisePropertyChangedAuto(); }
- }
-
+ }
public IdsPack IDSPack { get; set; }
}