diff --git a/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs index 63ec5619..07b2e878 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs @@ -178,6 +178,24 @@ namespace VEPROMS.CSLA.Library OnPropertyChanged("Step_CAS"); } } + // F2022-024 Time Critical Action Step + public string Step_TCAS // Time Critical Action Summary + { + get + { + string s = _Xp["Step", "TimeCriticalActionSum"]; + //If there is no value in the config, then return null. This will tell us to check the step type and format flag (ExcludeFromTimeCriticalActSum). + if (s == string.Empty) return null; + return s; + } + set + { + string s = _Xp["Step", "TimeCriticalActionSum"]; + if (value == s) return; + _Xp["Step", "TimeCriticalActionSum"] = value; + OnPropertyChanged("Step_TCAS"); + } + } //// Alternate text to use on the Continuous Action Summary //public string Step_AlternateContActSumText //{