B2019-072: Include psi in outside transition text

This commit is contained in:
2019-05-14 14:06:34 +00:00
parent 7a2966e75d
commit b7633a1f08
4 changed files with 63 additions and 0 deletions

View File

@@ -1050,6 +1050,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _UnitNumber, "@UnitNumber");
}
}
private LazyLoad<bool> _OutSideTransSetName; //B2019-072: For AEP, use PSI & SI for outside transition text
public bool OutSideTransSetName
{
get
{
return LazyLoad(ref _OutSideTransSetName, "@OutSideTransSetName");
}
}
private LazyLoad<bool> _SpecialCaseCalvert;
public bool SpecialCaseCalvert
{
@@ -6667,6 +6675,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _TransMenu, "@TransMenu");
}
}
private LazyLoad<string> _UnitProcSetString; //B2019-072: For AEP, use PSI & SI for outside transition text
public string UnitProcSetString // this is format of string to preface transition with
{
get
{
return LazyLoad(ref _UnitProcSetString, "@UnitProcSetString");
}
}
public override string GetPDDisplayName()
{ return string.Format("[{0}] - Type {1}", Index, Type); }
public override string GetPDCategory()