public MallDayController(IMallService <MallDayController> mallService,
                          IMallDayRepository mallDayRepository,
                          IMallDayService mallDayService) : base(mallService)
 {
     _mallDayRepository = mallDayRepository;
     _mallDayService    = mallDayService;
 }
コード例 #2
0
 public MallCustomerController(IMallService <MallCustomerController> mallService,
                               IMallCustomerRepository mallCustomerRepository) : base(mallService)
 {
     _mallCustomerRepository = mallCustomerRepository;
 }
 public MallOrderController(IMallService <MallOrderController> service,
                            IMallOrderRepository mallOrderRepository) : base(service)
 {
     _mallOrderRepository = mallOrderRepository;
 }
コード例 #4
0
 public YsPayController(IPayNotifyAppService payNotifyAppService,
                        IMallService mallService)
 {
     _payNotifyAppService = payNotifyAppService;
     _mallService         = mallService;
 }
コード例 #5
0
 protected MallController(IMallService <T> mallService) : base(mallService)
 {
     MallService       = mallService;
     MallDayRepository = MallService.MallDayRepository;
 }
 public MallProductSnapshotController(IMallService <MallProductSnapshotController> mallService,
                                      IMallProductSnapshotRepository mallProductSnapshotRepository) : base(mallService)
 {
     _mallProductSnapshotRepository = mallProductSnapshotRepository;
 }
コード例 #7
0
 public ProductForMallController(IMallService <ProductForMallController> mallService,
                                 IProductForMallRepository productForMallRepository) : base(mallService)
 {
     _productForMallRepository = productForMallRepository;
 }