internal Token(string hashKey, PrimaryUser bidder, Auction auction) { this.hashKey = hashKey; this.bidder = bidder; this.auction = auction; }
public Bid(Auction auction, PrimaryUser bidder, decimal price, DateTime timeStamp) { this.auction = auction; this.bidder = bidder; this.price = price; }