Exemplo n.º 1
0
 public Seller(Seller other) {
   this.name = other.name;
   this.product = new Product(other.product);
   this.minPrice = other.minPrice;
   this.strategy = other.getStrategy();
   this.decrement = other.getDecrement();
 }