private void Clear() => _productStockReport = new ProductStockReport();
 public ProductStockReportBuilder(IEnumerable <Product> products)
 {
     _products           = products;
     _productStockReport = new ProductStockReport();
 }