Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RisikoOrganisationApp
Please create a React-JS application for the RisikoOrganisationModule. The application has to offer the following views for the user interface: 1. AnbieterVerbandMitgliedschaftView 2. RisikoOrganisationView 3. RisikoOrganisationAktivitaetView 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 AnbieterVerbandMitgliedschaftView must contain the following fields: - name: Nachhilfeanbieter type: Nachhilfeanbieter - name: SeitJahr type: LONG - name: Verband type: Verband The data source for the [Nachhilfeanbieter] select control should be loaded from the relative URL: "/NachhilfeanbieterService/nachhilfeanbieter" (HTTP-GET) The data source for the [Verband] select control should be loaded from the relative URL: "/LandService/verband" (HTTP-GET) An existing AnbieterVerbandMitgliedschaft entity should be loaded from the relative URL: "/RisikoOrganisationService/anbieterverbandmitgliedschaft/{id}" (HTTP-GET) If a new AnbieterVerbandMitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/RisikoOrganisationService/anbieterverbandmitgliedschaft" (HTTP-POST) If an existing AnbieterVerbandMitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/RisikoOrganisationService/anbieterverbandmitgliedschaft/{id}" (HTTP-PUT) If an existing AnbieterVerbandMitgliedschaft entity has to be deleted, the following relative URL should be called: "/RisikoOrganisationService/anbieterverbandmitgliedschaft/{id}" (HTTP-DELETE) 2. The RisikoOrganisationView must contain the following fields: - name: IdeologieTyp type: STRING - name: IstExtremistisch 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 RisikoOrganisation entity should be loaded from the relative URL: "/RisikoOrganisationService/risikoorganisation/{id}" (HTTP-GET) If a new RisikoOrganisation entity has been created, the new entity should be posted to the relative URL: "/RisikoOrganisationService/risikoorganisation" (HTTP-POST) If an existing RisikoOrganisation entity has been updated, the modified entity should be sent to the relative URL: "/RisikoOrganisationService/risikoorganisation/{id}" (HTTP-PUT) If an existing RisikoOrganisation entity has to be deleted, the following relative URL should be called: "/RisikoOrganisationService/risikoorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following NachhilfeAngebot columns: - column: Beschreibung - column: RisikoOrganisation - column: Schule - column: Nachhilfeanbieter - column: IstSommerprogramm - column: IstKostenlos - column: IstHausaufgabenhilfe - column: VermittlungsKanal The table should have the title "NachhilfeAngebots" und the data must be loaded from the server with the following relative URL: "/NachhilfeanbieterService/nachhilfeangebot/risikoorganisation/{id}" Add a HTML table to the view with the following RisikoOrganisationAktivitaet columns: - column: RisikoOrganisation - column: AktivitaetsTyp - column: Beschreibung The table should have the title "RisikoOrganisationAktivitaets" und the data must be loaded from the server with the following relative URL: "/RisikoOrganisationService/risikoorganisationaktivitaet/risikoorganisation/{id}" 3. The RisikoOrganisationAktivitaetView must contain the following fields: - name: AktivitaetsTyp type: STRING - name: Beschreibung type: STRING - name: RisikoOrganisation type: RisikoOrganisation The data source for the [RisikoOrganisation] select control should be loaded from the relative URL: "/RisikoOrganisationService/risikoorganisation" (HTTP-GET) An existing RisikoOrganisationAktivitaet entity should be loaded from the relative URL: "/RisikoOrganisationService/risikoorganisationaktivitaet/{id}" (HTTP-GET) If a new RisikoOrganisationAktivitaet entity has been created, the new entity should be posted to the relative URL: "/RisikoOrganisationService/risikoorganisationaktivitaet" (HTTP-POST) If an existing RisikoOrganisationAktivitaet entity has been updated, the modified entity should be sent to the relative URL: "/RisikoOrganisationService/risikoorganisationaktivitaet/{id}" (HTTP-PUT) If an existing RisikoOrganisationAktivitaet entity has to be deleted, the following relative URL should be called: "/RisikoOrganisationService/risikoorganisationaktivitaet/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum