Example #1
0
 public IProduct create(IProductProps props)
 {
     return(new Product(props));
 }
Example #2
0
 public Product(IProductProps props) : base(props.id)
 {
     this.productName = props.name;
     this.description = props.description;
     this.price       = props.price;
 }