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.cs36
1 files changed, 36 insertions, 0 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 93af310ba..c656db8c0 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
@@ -29,6 +29,42 @@ namespace Tango.PPC.Maintenance.Models
{
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; }
}