internal FlipkartWishlistService(
     IHttpService httpService,
     ShoppingSiteConfig config,
     IServiceProvider serviceProvider) : base(httpService, config)
 {
     this.serviceProvider = serviceProvider;
 }
 public WishlistController(IServiceProvider serviceProvider, IHttpService httpService, IOptions <ShoppingSiteConfig> config)
 {
     this.serviceProvider = serviceProvider;
     this.httpService     = httpService;
     this.config          = config.Value;
 }
 public OfferController(IHttpService httpService, IOptions <ShoppingSiteConfig> config)
 {
     this.httpService = httpService;
     this.config      = config.Value;
 }
 internal FlipkartSearchService(IHttpService httpService, ShoppingSiteConfig config) : base(httpService, config)
 {
 }
Esempio n. 5
0
 internal FlipkartService(IHttpService httpService, ShoppingSiteConfig config)
 {
     this.httpService = httpService;
     this.config      = config;
 }
Esempio n. 6
0
 internal AmazonService(IHttpService httpService, ShoppingSiteConfig config)
 {
     this.config      = config;
     this.httpService = httpService;
 }