Ejemplo n.º 1
0
 public CPUsInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                       IGoodCellsSearcher goodCellsSearcher,
                                       ICacheKeyCreator keyCreator,
                                       CPUsSelector cpusSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator   = keyCreator;
     _cpusSelector = cpusSelector;
 }
 public VideoCardsInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                             IGoodCellsSearcher goodCellsSearcher,
                                             ICacheKeyCreator keyCreator,
                                             VideoCardsSelector videoCardsSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator         = keyCreator;
     _videoCardsSelector = videoCardsSelector;
 }
Ejemplo n.º 3
0
 public ComputerDrivesInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                                 IGoodCellsSearcher goodCellsSearcher,
                                                 ICacheKeyCreator keyCreator,
                                                 ComputerDrivesSelector computerDrivesSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator             = keyCreator;
     _computerDrivesSelector = computerDrivesSelector;
 }
 public HeadphonesInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                             IGoodCellsSearcher goodCellsSearcher,
                                             ICacheKeyCreator keyCreator,
                                             HeadphonesSelector headphonesSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator         = keyCreator;
     _headphonesSelector = headphonesSelector;
 }
 public FlashDrivesInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                              IGoodCellsSearcher goodCellsSearcher,
                                              ICacheKeyCreator keyCreator,
                                              FlashDrivesSelector flashDrivesSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator          = keyCreator;
     _flashDrivesSelector = flashDrivesSelector;
 }
Ejemplo n.º 6
0
 public LaptopsInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                          IGoodCellsSearcher goodCellsSearcher,
                                          ICacheKeyCreator keyCreator,
                                          LaptopsSelector laptopsSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator      = keyCreator;
     _laptopsSelector = laptopsSelector;
 }
 public GoodsInformationSearcherFactory(IGoodsInformationSearcher goodsInformationSearcher,
                                        IGoodCellsSearcher goodCellsSearcher,
                                        ICacheKeyCreator keyCreator,
                                        GoodsSelector goodsSelector)
 {
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator    = keyCreator;
     _goodsSelector = goodsSelector;
 }
Ejemplo n.º 8
0
 public GoodsController(IGoodsInformationCreator goodsInformationCreator,
                        ApplicationDbContext context,
                        IMapper mapper,
                        IGoodsInformationSearcher goodsInformationSearcher,
                        IGoodCellsSearcher goodCellsSearcher,
                        ICacheKeyCreator keyCreator)
 {
     _goodsInformationCreator = goodsInformationCreator;
     _context = context;
     _mapper  = mapper;
     _goodsInformationSearcher = goodsInformationSearcher;
     _goodCellsSearcher        = goodCellsSearcher;
     _keyCreator = keyCreator;
 }