total = new SimpleIntegerProperty();
}
public OrderTableRow(int orderId, int customerId, int products, boolean delivered, int deliveryDays, int total) {
super();
this.orderId = new SimpleIntegerProperty(orderId);
this.customerId = new SimpleIntegerProperty(customerId);
this.products = new SimpleIntegerProperty(products);
this.delivered = new SimpleBooleanProperty(delivered);
this.deliveryDays = new SimpleIntegerProperty(deliveryDays);
this.total = new SimpleIntegerProperty(total);
}