Пример #1
0
 /// <summary>
 /// Updates the DWB book print details.
 /// </summary>
 /// <param name="currentUser">The current user.</param>
 /// <param name="requestID">The request ID.</param>
 /// <param name="bookName">Name of the book.</param>
 /// <param name="xmlDoc">The XML doc.</param>
 private void UpdateDWBBookPrintDetails(string currentUser, string requestID, string bookName, XmlDocument xmlDoc)
 {
     strDocumentURL = PortalConfiguration.GetInstance().GetKey("DWBPrintNetworkPath") + string.Format("{0}_{1}", bookName, requestID) + ".pdf";
     //Call BLL method to update the list named "DWB Chapter Print Details" with the above details.
     WellBookBLL objBookBLL = new WellBookBLL();
     objBookBLL.UpdateBookPrintDetails(requestID, strDocumentURL, strParentSiteURL, currentUser, false, string.Empty, xmlDoc);
 }