예제 #1
0
        public virtual void Insert(int postId, User operateUser, int currencyId, int income, String reason)
        {
            ForumRateLog log = new ForumRateLog();

            log.User = operateUser;

            log.PostId = postId;

            log.CurrencyId = currencyId;
            log.Income     = income;

            log.Reason = reason;

            db.insert(log);
        }
예제 #2
0
        public virtual void Insert( int postId, User operateUser, int currencyId, int income, String reason )
        {
            ForumRateLog log = new ForumRateLog();

            log.User = operateUser;

            log.PostId = postId;

            log.CurrencyId = currencyId;
            log.Income = income;

            log.Reason = reason;

            db.insert( log );
        }