Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KursApp
Please create a React-JS application for the KursModule. The application has to offer the following views for the user interface: 1. HundeschuleView 2. HundetrainerView 3. KursView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The HundeschuleView must contain the following fields: - name: Beschreibung type: STRING - name: Gruendungsdatum type: DATE - name: IstVereinsbasiert type: BOOL - name: Name type: STRING - name: Ort type: STRING - name: Website type: STRING An existing Hundeschule entity should be loaded from the relative URL: "/KursService/hundeschule/{id}" (HTTP-GET) If a new Hundeschule entity has been created, the new entity should be posted to the relative URL: "/KursService/hundeschule" (HTTP-POST) If an existing Hundeschule entity has been updated, the modified entity should be sent to the relative URL: "/KursService/hundeschule/{id}" (HTTP-PUT) If an existing Hundeschule entity has to be deleted, the following relative URL should be called: "/KursService/hundeschule/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kurs columns: - column: Name - column: AnzahlTermine - column: MindestalterMonate - column: Ortstyp - column: Preis - column: IstEinzeltrainingMoeglich - column: Kurstyp - column: DauerWochen - column: IstGruppenkurs - column: Hundeschule - column: Beschreibung - column: HoechstalterMonate The table should have the title "Kurss" und the data must be loaded from the server with the following relative URL: "/KursService/kurs/hundeschule/{id}" Add a HTML table to the view with the following Hundetrainer columns: - column: Hundeschule - column: Nachname - column: TaetigSeitJahr - column: HatZertifizierung - column: Biografie - column: Vorname The table should have the title "Hundetrainers" und the data must be loaded from the server with the following relative URL: "/KursService/hundetrainer/hundeschule/{id}" 2. The HundetrainerView must contain the following fields: - name: Biografie type: STRING - name: HatZertifizierung type: BOOL - name: Hundeschule type: Hundeschule - name: Nachname type: STRING - name: TaetigSeitJahr type: INT - name: Vorname type: STRING The data source for the [Hundeschule] select control should be loaded from the relative URL: "/KursService/hundeschule" (HTTP-GET) An existing Hundetrainer entity should be loaded from the relative URL: "/KursService/hundetrainer/{id}" (HTTP-GET) If a new Hundetrainer entity has been created, the new entity should be posted to the relative URL: "/KursService/hundetrainer" (HTTP-POST) If an existing Hundetrainer entity has been updated, the modified entity should be sent to the relative URL: "/KursService/hundetrainer/{id}" (HTTP-PUT) If an existing Hundetrainer entity has to be deleted, the following relative URL should be called: "/KursService/hundetrainer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HundetrainerOrganisation columns: - column: Rolle - column: Beginn - column: Ende - column: Organisation - column: Hundetrainer The table should have the title "HundetrainerOrganisations" und the data must be loaded from the server with the following relative URL: "/OrganisationService/hundetrainerorganisation/hundetrainer/{id}" Add a HTML table to the view with the following Genehmigung columns: - column: Ausstellungsdatum - column: Ablaufdatum - column: Veterinaeramt - column: Hundetrainer - column: Notizen - column: ParagraphReferenz The table should have the title "Genehmigungs" und the data must be loaded from the server with the following relative URL: "/GenehmigungService/genehmigung/hundetrainer/{id}" Add a HTML table to the view with the following Pruefungsteilnahme columns: - column: Punktzahl - column: Hundetrainer - column: Datum - column: Ergebnis - column: Pruefung The table should have the title "Pruefungsteilnahmes" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefungsteilnahme/hundetrainer/{id}" Add a HTML table to the view with the following Zertifizierung columns: - column: Hundetrainer - column: Ausstellungsdatum - column: Titel - column: IstBehoerdlichAnerkannt - column: Ablaufdatum - column: Zertifizierungsstelle The table should have the title "Zertifizierungs" und the data must be loaded from the server with the following relative URL: "/ZertifizierungsstelleService/zertifizierung/hundetrainer/{id}" 3. The KursView must contain the following fields: - name: AnzahlTermine type: INT - name: Beschreibung type: STRING - name: DauerWochen type: INT - name: HoechstalterMonate type: INT - name: Hundeschule type: Hundeschule - name: IstEinzeltrainingMoeglich type: BOOL - name: IstGruppenkurs type: BOOL - name: Kurstyp type: STRING - name: MindestalterMonate type: INT - name: Name type: STRING - name: Ortstyp type: STRING - name: Preis type: STRING The data source for the [Hundeschule] select control should be loaded from the relative URL: "/KursService/hundeschule" (HTTP-GET) An existing Kurs entity should be loaded from the relative URL: "/KursService/kurs/{id}" (HTTP-GET) If a new Kurs entity has been created, the new entity should be posted to the relative URL: "/KursService/kurs" (HTTP-POST) If an existing Kurs entity has been updated, the modified entity should be sent to the relative URL: "/KursService/kurs/{id}" (HTTP-PUT) If an existing Kurs entity has to be deleted, the following relative URL should be called: "/KursService/kurs/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KursSozialverhaltenZiel columns: - column: Kurs - column: SozialverhaltenZiel The table should have the title "KursSozialverhaltenZiels" und the data must be loaded from the server with the following relative URL: "/SozialverhaltenZielService/kurssozialverhaltenziel/kurs/{id}" Add a HTML table to the view with the following Kurstermin columns: - column: Ende - column: Ortsbeschreibung - column: Kurs - column: Beginn The table should have the title "Kurstermins" und the data must be loaded from the server with the following relative URL: "/PruefungService/kurstermin/kurs/{id}" Add a HTML table to the view with the following Kursteilnahme columns: - column: Beginn - column: Ende - column: Hund - column: Notizen - column: Erfolgsstatus - column: Kurs The table should have the title "Kursteilnahmes" und the data must be loaded from the server with the following relative URL: "/UmweltreizService/kursteilnahme/kurs/{id}" Add a HTML table to the view with the following KursKommando columns: - column: Kurs - column: Kommando - column: Reihenfolge The table should have the title "KursKommandos" und the data must be loaded from the server with the following relative URL: "/KommandoService/kurskommando/kurs/{id}" Add a HTML table to the view with the following KursUmweltreiz columns: - column: Kurs - column: Umweltreiz The table should have the title "KursUmweltreizs" und the data must be loaded from the server with the following relative URL: "/UmweltreizService/kursumweltreiz/kurs/{id}" Add a HTML table to the view with the following KursErziehungsmethode columns: - column: Kurs - column: Erziehungsmethode The table should have the title "KursErziehungsmethodes" und the data must be loaded from the server with the following relative URL: "/HundesportartService/kurserziehungsmethode/kurs/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum