B2017-146 added a definition for a Part FromType of zero so that a valid xml node name is created when generating an export file of a procedure.

This commit is contained in:
John Jenko 2017-07-25 16:07:07 +00:00
parent 5d94daca0e
commit e4a33c4471

View File

@ -245,12 +245,13 @@ namespace VEPROMS.CSLA.Library
#endregion #endregion
} }
// B2017-146 added the "Part" and "Parts" types of zero so that we have a valid node name when creating an export of a procedure with this FromType value
public enum E_FromType : int public enum E_FromType : int
{ {
Procedure = 1, Section = 2, Caution = 3, Note = 4, RNO = 5, Step = 6, Table = 7, SupInfo = 8 Part = 0, Procedure = 1, Section = 2, Caution = 3, Note = 4, RNO = 5, Step = 6, Table = 7, SupInfo = 8
} }
public enum E_FromTypes : int public enum E_FromTypes : int
{ {
Procedures = 1, Sections = 2, Cautions = 3, Notes = 4, RNOs = 5, Steps = 6, Tables = 7, SupInfos = 8 Parts = 0, Procedures = 1, Sections = 2, Cautions = 3, Notes = 4, RNOs = 5, Steps = 6, Tables = 7, SupInfos = 8
} }
} }