import { Component, input } from '@angular/core'; import { Sitzkategorie } from '@infinimotion/model-frontend'; @Component({ selector: 'app-seat-selection', standalone: false, templateUrl: './seat-selection.component.html', styleUrl: './seat-selection.component.css' }) export class SeatSelectionComponent { seatCategory = input.required(); amount: number = 1; getPriceDisplay(price: number): string { return `${(price / 100).toFixed(2)} €`; } }