Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OrganisationApp
Please create a React-JS application for the OrganisationModule. The application has to offer the following views for the user interface: 1. GartenbauBereichView 2. OrganisationView 3. OrganisationFachsparteView 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 GartenbauBereichView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing GartenbauBereich entity should be loaded from the relative URL: "/OrganisationService/gartenbaubereich/{id}" (HTTP-GET) If a new GartenbauBereich entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/gartenbaubereich" (HTTP-POST) If an existing GartenbauBereich entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/gartenbaubereich/{id}" (HTTP-PUT) If an existing GartenbauBereich entity has to be deleted, the following relative URL should be called: "/OrganisationService/gartenbaubereich/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Fachsparte columns: - column: Beschreibung - column: Bereich - column: Name The table should have the title "Fachspartes" und the data must be loaded from the server with the following relative URL: "/FachsparteService/fachsparte/bereich/{id}" 2. The OrganisationView must contain the following fields: - name: Beschreibung type: STRING - name: Land type: STRING - name: Name type: STRING An existing Organisation entity should be loaded from the relative URL: "/OrganisationService/organisation/{id}" (HTTP-GET) If a new Organisation entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/organisation" (HTTP-POST) If an existing Organisation entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/organisation/{id}" (HTTP-PUT) If an existing Organisation entity has to be deleted, the following relative URL should be called: "/OrganisationService/organisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following OrganisationFachsparte columns: - column: Organisation - column: Fachsparte The table should have the title "OrganisationFachspartes" und the data must be loaded from the server with the following relative URL: "/OrganisationService/organisationfachsparte/organisation/{id}" 3. The OrganisationFachsparteView must contain the following fields: - name: Fachsparte type: Fachsparte - name: Organisation type: Organisation The data source for the [Organisation] select control should be loaded from the relative URL: "/OrganisationService/organisation" (HTTP-GET) The data source for the [Fachsparte] select control should be loaded from the relative URL: "/FachsparteService/fachsparte" (HTTP-GET) An existing OrganisationFachsparte entity should be loaded from the relative URL: "/OrganisationService/organisationfachsparte/{id}" (HTTP-GET) If a new OrganisationFachsparte entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/organisationfachsparte" (HTTP-POST) If an existing OrganisationFachsparte entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/organisationfachsparte/{id}" (HTTP-PUT) If an existing OrganisationFachsparte entity has to be deleted, the following relative URL should be called: "/OrganisationService/organisationfachsparte/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum