Пример #1
0
 public T fromProductItem(ProductItem in) {
   return this.id(in.getId())
       .description(in.getDescription())
       .units(in.getUnits())
       .capacity(in.getCapacity())
       .prices(in.getPrices())
       .categories(in.getCategories());
 }