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