┌───────┐ │Cliente│ ├───────┤ │id │ │nombre │ │mail │ └───────┘ | | ┌────────────┐ │Pedido │ ├────────────┤ │id │ │fecha │ │total │ │-- Reglas --│ │fecha>=Hoy │ │total>0 │ └────────────┘ | ┌──────────────────────────────────┐ │LineaPedido │ ├──────────────────────────────────┤ │cantidad : BigDecimal │ │precioUnitario : BigDecimal │ │subtotal : BigDecimal │ │-- Reglas -- │ │subtotal=cantidad * precioUnitario│ │cantidad>0 │ │precioUnitario>0 │ └──────────────────────────────────┘