コード例 #1
0
 public ProductBuyController(IProductBuyService productBuyService, IProductBuyFactory productBuyFactory)
 {
     _productBuyService = productBuyService;
     _productBuyFactory = productBuyFactory;
 }
コード例 #2
0
 public ProductBuyFactory(IProductBuyService productBuyService, IProductSellerService productSellerService, IMapper mapper)
 {
     _productBuyService    = productBuyService;
     _productSellerService = productSellerService;
     _mapper = mapper;
 }