Пример #1
0
 public ProductInfo(
     string name,
     Money price,
     StockKeepingUnit?productSKU = default)
 {
     Name       = name;
     Price      = price;
     ProductSKU = productSKU ?? StockKeepingUnit.NewSKU();
 }