/// <summary> /// To delete theme from database By Ashu /// </summary> /// <param name="themeId"></param> public void DeleteTheme(int themeId) { try { EventResource objEventRes = new EventResource(); objEventRes.DeleteTheme(themeId); } catch (Exception ex) { throw ex; } }