public int AddReply(Reply reply)
        {
            int count = 0;

            reply.DateTime = DateTime.Now;
            try {
                count = ReplyDao.AddReply(reply, DataMapper.Instance);
            }
            catch (Exception) {
                throw;
            }
            return(count);
        }