Files
HowBadIsMyBatch/docs/SymptomsCausedByVaccines/js/PrrBySymptomTableView.js
frankknoll fb53822fdc refactoring
2023-10-15 15:23:10 +02:00

17 lines
475 B
JavaScript

class PrrBySymptomTableView {
#delegate;
constructor(prrBySymptomTableElement, downloadPrrBySymptomTableButton) {
this.#delegate = new PrrByKeyTableView(
new PrrBySymptomTable(prrBySymptomTableElement),
downloadPrrBySymptomTableButton,
'Vaccine',
PrrByVaccineProvider.getPrrBySymptom);
}
displayPrrBySymptomTable4Vaccine(vaccine) {
this.#delegate.displayPrrByKeyTable4Value(vaccine);
}
}