Example #1
0
 public ProductOrderQueryService(
     IProductQueryService productQueryService,
     ICharmQueryService charmQueryService,
     IProductCategoryDiscountQueryService productCategoryDiscountQueryService,
     IProductOrderHelper productOrderHelper)
 {
     this.productQueryService = productQueryService;
     this.charmQueryService   = charmQueryService;
     this.productCategoryDiscountQueryService = productCategoryDiscountQueryService;
     this.productOrderHelper = productOrderHelper;
 }
Example #2
0
 public GetCharmsByCategoryIdQueryHandler(ICharmQueryService charmQueryService)
 {
     this.charmQueryService = charmQueryService;
 }