예제 #1
0
        public static string InsertReply(string rply, int aId, int uId)
        {
            Replys reply = new Replys();

            reply.Reply    = rply;
            reply.AnswerID = aId;
            reply.UserId   = uId;
            return(ReplyManager.IsReplyInserted(reply));
        }