Ejemplo n.º 1
0
        public string AddReply(Reply reply)
        {
            if (reply == null)
            {
                throw new XinLuClubException(400, "reply不能为null");
            }
            LoginBLL login = new LoginBLL();
            var      me    = login.GetMe();

            reply.OwnerID = me.ID;
            return(bll.AddReply(reply));
        }