00_Ubungen
Keine Dateien in diesem Thema verfügbar.
Lernmaterialien
Projects
1. CinemaTicket
private Long cinemaTicketId;
private Double price;
private LocalDate bookingDate;
private String hall; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für hall:
- Hall A
- Hall B
- VIP Hall
2. RestaurantOrder
private Long restaurantOrderId;
private Double price;
private LocalDate bookingDate;
private String tableArea; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für tableArea:
- Indoor
- Terrace
- VIP Lounge
3. PlumberService
private Long plumberServiceId;
private Double price;
private LocalDate bookingDate;
private String repairType; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für repairType:
- Pipe Repair
- Heating
- Bathroom
4. HairSalonBooking
private Long hairSalonBookingId;
private Double price;
private LocalDate bookingDate;
private String stylist; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für stylist:
- Anna
- Mike
- Sophie
5. HotelReservation
private Long hotelReservationId;
private Double price;
private LocalDate bookingDate;
private String roomType; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für roomType:
- Single
- Double
- Suite
6. GymMembership
private Long gymMembershipId;
private Double price;
private LocalDate bookingDate;
private String membershipType; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für membershipType:
- Basic
- Premium
- VIP
7. CarRental
private Long carRentalId;
private Double price;
private LocalDate bookingDate;
private String category; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für category:
- Economy
- SUV
- Luxury
8. FlowerShopOrder
private Long flowerShopOrderId;
private Double price;
private LocalDate bookingDate;
private String colorTheme; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für colorTheme:
- Red
- White
- Mixed
9. BakeryOrder
private Long bakeryOrderId;
private Double price;
private LocalDate bookingDate;
private String size; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für size:
- Small
- Medium
- Large
10. TaxiRide
private Long taxiRideId;
private Double price;
private LocalDate bookingDate;
private String carType; // ComboBox
private Integer quantity;
private Boolean active;ComboBox-Werte für carType:
- Standard
- Van
- Luxury