┌─────────────────────────────────────────┐ │Konto │ ├─────────────────────────────────────────┤ │- **int** nummer │ │- **double** stand │ │-- │ │+ Konto(**int** nummer, **double** stand)│ │-- │ │+ **double** getStand() │ │+ **int** getNummer() │ │+ **void** setStand(**double** stand) │ └─────────────────────────────────────────┘ | | ┌───────────────────────────────────────────────────────────────────┐ │Kunde │ ├───────────────────────────────────────────────────────────────────┤ │- **String** name │ │- **String** geburtsOrt │ │- **String** wohnOrt │ │-- │ │+ Kunde(**String** name, **String** geburtsOrt, **String** wohnOrt)│ │-- │ │+ **String** getName() │ │+ **void** setName(**String** name) │ │+ **String** getGeburtsOrt() │ │+ **void** setGeburtsOrt(**String** geburtsOrt) │ │+ **String** getWohnOrt() │ │+ **void** setWohnOrt(**String** wohnOrt) │ └───────────────────────────────────────────────────────────────────┘