Added code to store the xml representation of the approved version of the procedure in the database for future support of temp mods, etc.
This commit is contained in:
@@ -164,6 +164,16 @@ namespace VEPROMS.CSLA.Library
|
||||
return _SummaryPDF;
|
||||
}
|
||||
}
|
||||
private string _ApprovedXML;
|
||||
public string ApprovedXML
|
||||
{
|
||||
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
||||
get
|
||||
{
|
||||
CanReadProperty("ApprovedXML", true);
|
||||
return _ApprovedXML;
|
||||
}
|
||||
}
|
||||
private DateTime _DTS = new DateTime();
|
||||
public DateTime DTS
|
||||
{
|
||||
@@ -386,6 +396,7 @@ namespace VEPROMS.CSLA.Library
|
||||
_StageID = dr.GetInt32("StageID");
|
||||
_PDF = (byte[])dr.GetValue("PDF");
|
||||
_SummaryPDF = (byte[])dr.GetValue("SummaryPDF");
|
||||
_ApprovedXML = dr.GetString("ApprovedXML");
|
||||
_DTS = dr.GetDateTime("DTS");
|
||||
_UserID = dr.GetString("UserID");
|
||||
}
|
||||
|
Reference in New Issue
Block a user