BasBrunink / tpdb_SandBox

1 stars 0 forks source link

[BE] Themepark resource #1

Closed BasBrunink closed 1 month ago

BasBrunink commented 1 month ago

DoD:

Service/ controller needs: CRUD

classDiagram
    class Park
    Park : - String name
    Park : - ParkType  type
    Park : - Company operator
    Park : - LocalDate opening
    Park :  - LocalDate closing
    Park : - OperationalStatus operationalStatus
    Park : - List~Ride~ rides
    Park : - List~Show~ shows
    Park : - List~Attraction~ attractions 
    Park : - List~Restaurant~ restaurants
    Park : - List~Shop~ shops

    BaseModel <|-- Park