public ProductListController(IMemoryCache memoryCache, IProductTopicService productTopicService,
                              IProductSearchService productSearchService,
                              IProductClassifyService productClassifyService)
 {
     this.memoryCache            = memoryCache;
     this.productClassifyService = productClassifyService;
     this.productSearchService   = productSearchService;
     this.productTopicService    = productTopicService;
 }
Ejemplo n.º 2
0
 public ProductTopicController(IProductTopicService productTopicService, IMemoryCache memoryCache)
 {
     this.productTopicService = productTopicService;
     this.memoryCache         = memoryCache;
 }