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