// For Delete User SubTopic
        public ActionResult DeleteUserSubTopic(string DisplaySpecialityId, int TopicId, int FolderId)
        {
            var Result = MyLibraryBL.DeleteSubTopic(FolderId, CurrentUser.UserId); // FolderId means SubTopicId here

            return(RedirectToAction("EditLibrary", new { specid = DisplaySpecialityId }));
        }