Example #1
0
 private void UpdateDWBChapterPrintDetails(string currentUser, string requestID, string bookName)
 {
     strDocumentURL = String.Empty;
     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.UpdateChapterPrintDetails(requestID, strDocumentURL, strParentSiteURL, currentUser);
 }