Example #1
0
 /// <summary>
 /// Checks the duplicate chapter in a book.
 /// </summary>
 /// <param name="listName">Name of the list.</param>
 /// <param name="chapterTitle">The chapter title.</param>
 /// <param name="chapterID">The chapter ID.</param>
 /// <param name="bookID">The book ID.</param>
 /// <param name="mode">The mode.</param>
 /// <returns></returns>
 protected bool CheckDuplicateChapter(string listName, string chapterTitle, string chapterID, string bookID, string mode)
 {
     objCommonBLL = new CommonBLL();
     return objCommonBLL.CheckDuplicateChapter(strParentSiteURL, listName, chapterTitle, chapterID, bookID, mode);
 }