Example #1
0
 public ShopService(ILogService logService, IShopActionService shopActionService, IShopCategoryService shopCategoryService, IShopSpecService shopSpecService, IShopCompatiblesService shopCompatiblesService, IShopPackService shopPackService, IShopManufacturerService shopManufacturerService, IHeartService heartService, IShopGoodsReviewService goodsReviewService, ISearchService searchService)
 {
     _logService              = logService;
     _shopActionService       = shopActionService;
     _shopCategoryService     = shopCategoryService;
     _shopSpecService         = shopSpecService;
     _shopCompatiblesService  = shopCompatiblesService;
     _shopPackService         = shopPackService;
     _shopManufacturerService = shopManufacturerService;
     _heartService            = heartService;
     _goodsReviewService      = goodsReviewService;
     _searchService           = searchService;
     InitCache("ShopService");
     // Reindex();
     // GenerateRelativeUrls();
 }
Example #2
0
 public CompatibleApiController(IShopCompatiblesService shopCompatiblesService)
 {
     _shopCompatiblesService = shopCompatiblesService;
 }