Ejemplo n.º 1
0
 public ProductReports(
     IProductRangeRepository productRangeRepository,
     ISalesProductRepository salesProductRepository)
 {
     this.productRangeRepository = productRangeRepository;
     this.salesProductRepository = salesProductRepository;
 }
Ejemplo n.º 2
0
 public ProductRangeService(IProductRangeRepository repository)
 {
     _repo = repository;
 }