public bool DeleteBoard(string boardID) { if (string.IsNullOrEmpty(boardID)) { throw new XinLuClubException(400, "boardID不能为空"); } TopicBLL bll = new TopicBLL(); return(bll.DeleteBoard(new BoardGroupQueryForm { ID = boardID })); }