Пример #1
0
 /// <summary>
 /// This method will call the Event resource method to get the event theme for particulat theme
 /// </summary>
 /// <param name="eventThemeID">id of the theme</param>
 /// <returns></returns>
 public EventTheme GetEventThemeByID(int eventThemeID)
 {
     EventTheme objEventTheme = null;
     try
     {
         EventResource objEventRes = new EventResource();
         objEventTheme = objEventRes.GetEventThemeByID(eventThemeID);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return objEventTheme;
 }