Ejemplo n.º 1
0
 /// <summary>
 /// This method will call the Story Resource access class method to Delete the Topic from the 
 /// More about section and also send a email to all admin user
 /// </summary>
 /// <param name="objStory">stories object which contain the Section id and Userbioagraphy ID
 ///                        of the topic which topic user wants to delete
 /// </param>
 public void DeleteTopic(Stories objStory)
 {
     try
     {
         StoryResource objStoryRes = new StoryResource();
         objStoryRes.DeleteTopic(objStory);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }