コード例 #1
0
 public ProductReports(
     IProductRangeRepository productRangeRepository,
     ISalesProductRepository salesProductRepository)
 {
     this.productRangeRepository = productRangeRepository;
     this.salesProductRepository = salesProductRepository;
 }
コード例 #2
0
 public ProductRangeService(IProductRangeRepository repository)
 {
     _repo = repository;
 }