Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. AusbildungsinstitutionView 2. AusbildungsprogrammView 3. ErlaubnisView 4. LandView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The AusbildungsinstitutionView must contain the following fields: - name: Beschreibung type: STRING - name: Institutionstyp type: STRING - name: IstOeffentlich type: BOOL - name: Land type: Land - name: Name type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Ausbildungsinstitution entity should be loaded from the relative URL: "/LandService/ausbildungsinstitution/{id}" (HTTP-GET) If a new Ausbildungsinstitution entity has been created, the new entity should be posted to the relative URL: "/LandService/ausbildungsinstitution" (HTTP-POST) If an existing Ausbildungsinstitution entity has been updated, the modified entity should be sent to the relative URL: "/LandService/ausbildungsinstitution/{id}" (HTTP-PUT) If an existing Ausbildungsinstitution entity has to be deleted, the following relative URL should be called: "/LandService/ausbildungsinstitution/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ausbildungsprogramm columns: - column: StaatlichUeberwacht - column: Beruf - column: Modus - column: Ausbildungsinstitution - column: DauerMonate - column: Name - column: Beschreibung - column: Studiengebuehr The table should have the title "Ausbildungsprogramms" und the data must be loaded from the server with the following relative URL: "/LandService/ausbildungsprogramm/ausbildungsinstitution/{id}" 2. The AusbildungsprogrammView must contain the following fields: - name: Ausbildungsinstitution type: Ausbildungsinstitution - name: Beruf type: Beruf - name: Beschreibung type: STRING - name: DauerMonate type: LONG - name: Modus type: STRING - name: Name type: STRING - name: StaatlichUeberwacht type: BOOL - name: Studiengebuehr type: STRING The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Ausbildungsinstitution] select control should be loaded from the relative URL: "/LandService/ausbildungsinstitution" (HTTP-GET) An existing Ausbildungsprogramm entity should be loaded from the relative URL: "/LandService/ausbildungsprogramm/{id}" (HTTP-GET) If a new Ausbildungsprogramm entity has been created, the new entity should be posted to the relative URL: "/LandService/ausbildungsprogramm" (HTTP-POST) If an existing Ausbildungsprogramm entity has been updated, the modified entity should be sent to the relative URL: "/LandService/ausbildungsprogramm/{id}" (HTTP-PUT) If an existing Ausbildungsprogramm entity has to be deleted, the following relative URL should be called: "/LandService/ausbildungsprogramm/{id}" (HTTP-DELETE) 3. The ErlaubnisView must contain the following fields: - name: Ablaufdatum type: DATE - name: Ausstellungsdatum type: DATE - name: Behoerde type: Behoerde - name: Beruf type: Beruf - name: Erlaubnisnummer type: STRING - name: Erlaubnistyp type: STRING - name: Gesetz type: Gesetz - name: Hinweise type: STRING - name: IstWiderrufen type: BOOL - name: Land type: Land - name: Person type: Person - name: Sektoralerlaubnisart type: Sektoralerlaubnisart - name: Widerrufsdatum type: DATE The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Sektoralerlaubnisart] select control should be loaded from the relative URL: "/PersonService/sektoralerlaubnisart" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Erlaubnis entity should be loaded from the relative URL: "/LandService/erlaubnis/{id}" (HTTP-GET) If a new Erlaubnis entity has been created, the new entity should be posted to the relative URL: "/LandService/erlaubnis" (HTTP-POST) If an existing Erlaubnis entity has been updated, the modified entity should be sent to the relative URL: "/LandService/erlaubnis/{id}" (HTTP-PUT) If an existing Erlaubnis entity has to be deleted, the following relative URL should be called: "/LandService/erlaubnis/{id}" (HTTP-DELETE) 4. The LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Erlaubnis columns: - column: Ausstellungsdatum - column: Erlaubnistyp - column: Land - column: Ablaufdatum - column: Gesetz - column: Hinweise - column: Behoerde - column: Person - column: Widerrufsdatum - column: IstWiderrufen - column: Beruf - column: Sektoralerlaubnisart - column: Erlaubnisnummer The table should have the title "Erlaubniss" und the data must be loaded from the server with the following relative URL: "/LandService/erlaubnis/land/{id}" Add a HTML table to the view with the following Person columns: - column: Vorname - column: Geburtsdatum - column: Sterbedatum - column: Nachname - column: Staatsangehoerigkeit - column: Geburtsland - column: Geschlecht - column: IstVerstorben The table should have the title "Persons" und the data must be loaded from the server with the following relative URL: "/PersonService/person/geburtsland/{id}" Add a HTML table to the view with the following Person columns: - column: Vorname - column: Geburtsdatum - column: Sterbedatum - column: Nachname - column: Staatsangehoerigkeit - column: Geburtsland - column: Geschlecht - column: IstVerstorben The table should have the title "Persons" und the data must be loaded from the server with the following relative URL: "/PersonService/person/staatsangehoerigkeit/{id}" Add a HTML table to the view with the following Pruefung columns: - column: MuendlichErforderlich - column: Name - column: MaxVersuche - column: SchriftlichErforderlich - column: Land - column: Behoerde - column: Beschreibung - column: Beruf - column: Mindestpunktzahl - column: Gesetz The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefung/land/{id}" Add a HTML table to the view with the following Versicherung columns: - column: Beschreibung - column: Name - column: Versicherungsart - column: Land The table should have the title "Versicherungs" und the data must be loaded from the server with the following relative URL: "/BehandlungsmethodeService/versicherung/land/{id}" Add a HTML table to the view with the following Verband columns: - column: Land - column: Name - column: IstDachverband - column: Beschreibung - column: Akronym The table should have the title "Verbands" und the data must be loaded from the server with the following relative URL: "/VerbandService/verband/land/{id}" Add a HTML table to the view with the following Heilpraktiker columns: - column: Hauptland - column: HatVolleErlaubnis - column: SchwerpunktPsychotherapie - column: BeginnTaetigkeit - column: SchwerpunktPhysiotherapie - column: Praxisbeschreibung - column: EndeTaetigkeit - column: Person The table should have the title "Heilpraktikers" und the data must be loaded from the server with the following relative URL: "/PersonService/heilpraktiker/hauptland/{id}" Add a HTML table to the view with the following Gesetz columns: - column: Beschreibung - column: Abkuerzung - column: Kurztitel - column: AmtlicherTitel - column: DatumVerkuendung - column: Zitat - column: DatumLetzteAenderung - column: Land - column: Gesetzesart The table should have the title "Gesetzs" und the data must be loaded from the server with the following relative URL: "/GesetzService/gesetz/land/{id}" Add a HTML table to the view with the following Behoerde columns: - column: Name - column: Behoerdenart - column: Beschreibung - column: Land The table should have the title "Behoerdes" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/behoerde/land/{id}" Add a HTML table to the view with the following Ausbildungsinstitution columns: - column: Institutionstyp - column: Beschreibung - column: IstOeffentlich - column: Land - column: Name The table should have the title "Ausbildungsinstitutions" und the data must be loaded from the server with the following relative URL: "/LandService/ausbildungsinstitution/land/{id}" Add a HTML table to the view with the following BerufLandRegelung columns: - column: Gesetz - column: Hinweise - column: Strafbarkeit - column: Beruf - column: Beschreibung - column: Regelungsstatus - column: Land The table should have the title "BerufLandRegelungs" und the data must be loaded from the server with the following relative URL: "/BerufService/beruflandregelung/land/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum