Exemplo n.º 1
0
 /// <summary>
 /// Get Themes for delete and  Update theme in Admin portal By Ashu
 /// </summary>
 /// <param name="strCategoryName"></param>
 /// <param name="strSubCategoryName"></param>
 public IList<Themes> GetThemesList(string strSubCategory, string strSubCategoryName, string applicationType)
 {
     IList<Themes> objThemesSubCategoryList = null;
     try
     {
         EventResource objEventRes = new EventResource();
         objThemesSubCategoryList = objEventRes.GetThemesList(strSubCategory, strSubCategoryName, applicationType);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return objThemesSubCategoryList;
 }