public OrderProduct(Product product, int amount, float pricesale) { this.dao = OrdersProductsDAO.getInstance(); this.product = product; this.amount = amount; this.pricesale = pricesale; }
private OrderProduct() { this.dao = OrdersProductsDAO.getInstance(); }