Exemple #1
0
 public PercentDiscountController(ICommandBus bus, IPercentDiscountQueryService discountQueryService) : base(bus)
 {
     _discountQueryService = discountQueryService;
 }
Exemple #2
0
 public TodayHavePercentDiscountController(IPercentDiscountQueryService percentDiscountQueryService)
 {
     _percentDiscountQueryService = percentDiscountQueryService;
 }
 public PercentDiscountSumReportController(IPercentDiscountQueryService discountQueryService)
 {
     _discountQueryService = discountQueryService;
 }
Exemple #4
0
 public ProductPercentDiscountController(IPercentDiscountQueryService percentDiscountQueryService)
 {
     _percentDiscountQueryService = percentDiscountQueryService;
 }
Exemple #5
0
 public DiscountPercentShopSellController(IPercentDiscountQueryService discountQueryService)
 {
     _discountQueryService = discountQueryService;
 }