예제 #1
0
        public static string UpdateReply(int repId, string reply)
        {
            Replys rply = new Replys();

            rply.Id    = repId;
            rply.Reply = reply;
            return(ReplyManager.IsReplyUpdated(rply));
        }