Exemplo n.º 1
0
 public AuctionRunner(Auction auc)
 {
     auction      = auc;
     Participants = new ConcurrentBag <Agent>();
     _notifier    = new AgentNotifier();
     AuctionStage = 1;
 }
Exemplo n.º 2
0
 public MAS()
 {
     AuctionRunners        = new List <AuctionRunner>();
     _listedAgents         = new List <Agent>();
     _dueToBeginAuctions   = new List <AuctionRunner>();
     _notifier             = new AgentNotifier();
     _auctionRunnerFactory = new AuctionRunnerFactory();
 }