예제 #1
0
  @Override
  public GenericBean<Order> load(Order model) {

    if (model == null) throw new IllegalStateException();

    this.id = model.getId();
    this.code = model.getCode();
    this.name = model.getName();
    this.description = model.getDescription();
    this.price = model.getPrice();
    this.deliveryValue = model.getDeliveryValue();
    this.discount = model.getDiscount();
    //		this.products = model.getProducts();
    this.seller = model.getSeller();

    return this;
  }