コード例 #1
0
 public CustomersController(ICustomerService customerService, ICustomerSelectListBuilder customerViewModelSelectListBuilder, IPromotionAPIRepository promotionAPIRepository)
     : base(customerService, customerViewModelSelectListBuilder)
 {
     this.customerService        = customerService;
     this.promotionAPIRepository = promotionAPIRepository;
 }
コード例 #2
0
 public PromotionAPIsController(IPromotionAPIRepository promotionAPIRepository)
 {
     this.promotionAPIRepository = promotionAPIRepository;
 }