Ejemplo n.º 1
0
        public string AddBoard(BoardGroup board)
        {
            if (board == null)
            {
                throw new XinLuClubException(400, "board不能为null");
            }
            TopicBLL bll = new TopicBLL();

            return(bll.AddBoard(board));
        }