Esempio n. 1
0
 public Product(Price price, ProductName name)
 {
     Price = price;
     Name  = name;
 }
Esempio n. 2
0
 public Product(ProductDTO productDTO)
 {
     Price = new Price(productDTO.Price);
     Name  = new ProductName(productDTO.Name);
 }