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