aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/MidTankLevelModel.cs')
-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; }
}