public List <Category> GetCategoryById(int SuperCategoryId) { try { CategoryBO categoryBO = new CategoryBO(); return(categoryBO.GetCategoryById(SuperCategoryId)); } catch (Exception ex) { Error.WriteException(TraceEventType.Error, ex.Message.ToString(), "CampaignMod"); throw; } }