public AuctionLotManager(
     IAuctionLotRepository auctionLotRepository,
     IAuctionLotCacheService cacheService)
 {
     _repository   = auctionLotRepository;
     _cacheService = cacheService;
 }
Esempio n. 2
0
 public LotsController(
     ApplicationSettings settings,
     IAuctionLotCacheService auctionLotCacheService,
     AuctionLotManager auctionLotManager)
 {
     _settings = settings;
     _auctionLotCacheService = auctionLotCacheService;
     _auctionLotManager      = auctionLotManager;
 }
Esempio n. 3
0
 public void SetUp()
 {
     RegisterDependencies();
     _auctionLotCacheService = Container.Resolve <IAuctionLotCacheService>();
     _auctionLotManager      = Container.Resolve <AuctionLotManager>();
 }