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:
Rich
2015-02-05 03:53:29 +00:00
parent e3b5351b30
commit 34bfdba7b2
4 changed files with 84 additions and 8 deletions

View File

@@ -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");
}