SeatSelection page

This commit is contained in:
2024-10-04 20:15:16 +02:00
parent 8165f17fc8
commit e48782b897
22 changed files with 316 additions and 76 deletions

View File

@@ -5,5 +5,6 @@ export class SeatGroupModel {
surcharge: number
standingArea: Boolean
capacity: number
occupied: number
seatRows: Array<SeatRowModel>
}

View File

@@ -1,4 +1,5 @@
export class SeatModel {
id: number
seatNr: string
state: number
}

View File

@@ -0,0 +1,14 @@
import { SeatModel } from "../locations/seatModel";
import { SeatRowModel } from "../locations/seatRowModel";
export class SelectedSeatModel {
seat: SeatModel
seatRow: number
seatGroupName: string
constructor(seat: SeatModel, seatRow: number, seatGroupName: string) {
this.seat = seat
this.seatRow = seatRow
this.seatGroupName = seatGroupName
}
}