示例#1
0
        public BiddingPriceManager(SubmitStrategyManager strategyManager, BiddingContext biddingContext, Func <BiddingPriceRequest, bool> cancelStrategyFunc)
        {
            this.strategyManager = strategyManager;
            this.biddingContext  = biddingContext;

            this.strategies = strategyManager.LoadStrategies();
        }
示例#2
0
 public BiddingScreen(ProjectConfig conf, BidActionManager actionManager, Phase2ActManager phase2Manager,
                      SubmitStrategyManager strategyManager, PriceActionService priceActionService)
 {
     this.conf               = conf;
     this.actionManager      = actionManager;
     this.phase2Manager      = phase2Manager;
     this.strategyManager    = strategyManager;
     this.priceActionService = priceActionService;
 }