Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BerufskoerperschaftApp
Please create a React-JS application for the BerufskoerperschaftModule. The application has to offer the following views for the user interface: 1. BerufskoerperschaftView 2. GesetzGiltFuerKoerperschaftView 3. ZahnarztMitgliedschaftView 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 BerufskoerperschaftView must contain the following fields: - name: Koerperschaftstyp type: STRING - name: Land type: Land - name: Name type: STRING - name: Webseite type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Berufskoerperschaft entity should be loaded from the relative URL: "/BerufskoerperschaftService/berufskoerperschaft/{id}" (HTTP-GET) If a new Berufskoerperschaft entity has been created, the new entity should be posted to the relative URL: "/BerufskoerperschaftService/berufskoerperschaft" (HTTP-POST) If an existing Berufskoerperschaft entity has been updated, the modified entity should be sent to the relative URL: "/BerufskoerperschaftService/berufskoerperschaft/{id}" (HTTP-PUT) If an existing Berufskoerperschaft entity has to be deleted, the following relative URL should be called: "/BerufskoerperschaftService/berufskoerperschaft/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZahnarztMitgliedschaft columns: - column: Ende - column: Zahnarzt - column: Mitgliedschaftstyp - column: IstPflichtmitgliedschaft - column: Beginn - column: Berufskoerperschaft The table should have the title "ZahnarztMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/BerufskoerperschaftService/zahnarztmitgliedschaft/berufskoerperschaft/{id}" Add a HTML table to the view with the following GesetzGiltFuerKoerperschaft columns: - column: Gesetz - column: Berufskoerperschaft The table should have the title "GesetzGiltFuerKoerperschafts" und the data must be loaded from the server with the following relative URL: "/BerufskoerperschaftService/gesetzgiltfuerkoerperschaft/berufskoerperschaft/{id}" 2. The GesetzGiltFuerKoerperschaftView must contain the following fields: - name: Berufskoerperschaft type: Berufskoerperschaft - name: Gesetz type: Gesetz The data source for the [Berufskoerperschaft] select control should be loaded from the relative URL: "/BerufskoerperschaftService/berufskoerperschaft" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) An existing GesetzGiltFuerKoerperschaft entity should be loaded from the relative URL: "/BerufskoerperschaftService/gesetzgiltfuerkoerperschaft/{id}" (HTTP-GET) If a new GesetzGiltFuerKoerperschaft entity has been created, the new entity should be posted to the relative URL: "/BerufskoerperschaftService/gesetzgiltfuerkoerperschaft" (HTTP-POST) If an existing GesetzGiltFuerKoerperschaft entity has been updated, the modified entity should be sent to the relative URL: "/BerufskoerperschaftService/gesetzgiltfuerkoerperschaft/{id}" (HTTP-PUT) If an existing GesetzGiltFuerKoerperschaft entity has to be deleted, the following relative URL should be called: "/BerufskoerperschaftService/gesetzgiltfuerkoerperschaft/{id}" (HTTP-DELETE) 3. The ZahnarztMitgliedschaftView must contain the following fields: - name: Beginn type: DATE - name: Berufskoerperschaft type: Berufskoerperschaft - name: Ende type: DATE - name: IstPflichtmitgliedschaft type: BOOL - name: Mitgliedschaftstyp type: STRING - name: Zahnarzt type: Zahnarzt The data source for the [Berufskoerperschaft] select control should be loaded from the relative URL: "/BerufskoerperschaftService/berufskoerperschaft" (HTTP-GET) The data source for the [Zahnarzt] select control should be loaded from the relative URL: "/ZahnarztService/zahnarzt" (HTTP-GET) An existing ZahnarztMitgliedschaft entity should be loaded from the relative URL: "/BerufskoerperschaftService/zahnarztmitgliedschaft/{id}" (HTTP-GET) If a new ZahnarztMitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/BerufskoerperschaftService/zahnarztmitgliedschaft" (HTTP-POST) If an existing ZahnarztMitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/BerufskoerperschaftService/zahnarztmitgliedschaft/{id}" (HTTP-PUT) If an existing ZahnarztMitgliedschaft entity has to be deleted, the following relative URL should be called: "/BerufskoerperschaftService/zahnarztmitgliedschaft/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum