```text
┌───────────────────────┐
│ Offered order options │
├───┬────────────┬──────┴╥──────────┐
│ U │ Customer │ Order ║ Discount │
╞═══╪════════════╪═══════╬══════════╡
│ 1 │ "Business" │ <10 ║ 0.10 │
├───┼────────────┼───────╫──────────┤
│ 2 │ "Business" │ >=10 ║ 0.15 │
├───┼────────────┼───────╫──────────┤
│ 3 │ "Private" │ - ║ 0.05 │
└───┴────────────┴───────╨──────────┘
```
> # Offered order options
| | `i` | `i` | `o` |
| 1 | "Business" | <10 | 0.10 |
| 2 | "Business" | >=10 | 0.15 |
| 3 | "Private" | - | 0.05 |