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); }
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 ); }