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