示例#1
0
 public LotsController(
     ApplicationSettings settings,
     IAuctionLotCacheService auctionLotCacheService,
     AuctionLotManager auctionLotManager)
 {
     _settings = settings;
     _auctionLotCacheService = auctionLotCacheService;
     _auctionLotManager      = auctionLotManager;
 }
示例#2
0
 public void SetUp()
 {
     RegisterDependencies();
     _auctionLotCacheService = Container.Resolve <IAuctionLotCacheService>();
     _auctionLotManager      = Container.Resolve <AuctionLotManager>();
 }