예제 #1
0
 /// <summary>
 /// This method will call the Event resource method to get the event theme information
 /// for particular event invitation category and tributetype
 /// </summary>
 /// <param name="eventInvitationCategoryID">id of event invitation category</param>
 /// <param name="tributeType">tributetype</param>
 /// <returns>list of object having eventtheme information</returns>
 public IList<EventTheme> EventThemeInfo(int eventInvitationCategoryID, string tributeType)
 {
     IList<EventTheme> objEventThemeList = null;
     try
     {
         EventResource objEventRes = new EventResource();
         objEventThemeList = objEventRes.EventThemeInfo(eventInvitationCategoryID, tributeType);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return objEventThemeList;
 }