Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
InternationaleOrganisationApp
Please create a React-JS application for the InternationaleOrganisationModule. The application has to offer the following views for the user interface: 1. InternationaleMitgliedschaftView 2. InternationaleOrganisationView 3. MissionView 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 InternationaleMitgliedschaftView must contain the following fields: - name: InternationaleOrganisation type: InternationaleOrganisation - name: Land type: Land - name: Notizen type: STRING - name: SeitDatum type: DATE The data source for the [InternationaleOrganisation] select control should be loaded from the relative URL: "/InternationaleOrganisationService/internationaleorganisation" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing InternationaleMitgliedschaft entity should be loaded from the relative URL: "/InternationaleOrganisationService/internationalemitgliedschaft/{id}" (HTTP-GET) If a new InternationaleMitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/InternationaleOrganisationService/internationalemitgliedschaft" (HTTP-POST) If an existing InternationaleMitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/InternationaleOrganisationService/internationalemitgliedschaft/{id}" (HTTP-PUT) If an existing InternationaleMitgliedschaft entity has to be deleted, the following relative URL should be called: "/InternationaleOrganisationService/internationalemitgliedschaft/{id}" (HTTP-DELETE) 2. The InternationaleOrganisationView must contain the following fields: - name: Abkuerzung type: STRING - name: Beschreibung type: STRING - name: Gruendungsdatum type: DATE - name: Hauptsitz type: STRING - name: Name type: STRING An existing InternationaleOrganisation entity should be loaded from the relative URL: "/InternationaleOrganisationService/internationaleorganisation/{id}" (HTTP-GET) If a new InternationaleOrganisation entity has been created, the new entity should be posted to the relative URL: "/InternationaleOrganisationService/internationaleorganisation" (HTTP-POST) If an existing InternationaleOrganisation entity has been updated, the modified entity should be sent to the relative URL: "/InternationaleOrganisationService/internationaleorganisation/{id}" (HTTP-PUT) If an existing InternationaleOrganisation entity has to be deleted, the following relative URL should be called: "/InternationaleOrganisationService/internationaleorganisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Mission columns: - column: MissionTyp - column: Name - column: GastLand - column: InternationaleOrganisation - column: StartDatum - column: EndDatum - column: Beschreibung The table should have the title "Missions" und the data must be loaded from the server with the following relative URL: "/InternationaleOrganisationService/mission/internationaleorganisation/{id}" Add a HTML table to the view with the following InternationaleMitgliedschaft columns: - column: Land - column: Notizen - column: SeitDatum - column: InternationaleOrganisation The table should have the title "InternationaleMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/InternationaleOrganisationService/internationalemitgliedschaft/internationaleorganisation/{id}" 3. The MissionView must contain the following fields: - name: Beschreibung type: STRING - name: EndDatum type: DATE - name: GastLand type: Land - name: InternationaleOrganisation type: InternationaleOrganisation - name: MissionTyp type: STRING - name: Name type: STRING - name: StartDatum type: DATE The data source for the [GastLand] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) The data source for the [InternationaleOrganisation] select control should be loaded from the relative URL: "/InternationaleOrganisationService/internationaleorganisation" (HTTP-GET) An existing Mission entity should be loaded from the relative URL: "/InternationaleOrganisationService/mission/{id}" (HTTP-GET) If a new Mission entity has been created, the new entity should be posted to the relative URL: "/InternationaleOrganisationService/mission" (HTTP-POST) If an existing Mission entity has been updated, the modified entity should be sent to the relative URL: "/InternationaleOrganisationService/mission/{id}" (HTTP-PUT) If an existing Mission entity has to be deleted, the following relative URL should be called: "/InternationaleOrganisationService/mission/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MissionTeilnahme columns: - column: Mission - column: PersonalAnzahl - column: Polizei - column: Rolle - column: Notizen The table should have the title "MissionTeilnahmes" und the data must be loaded from the server with the following relative URL: "/PolizeiService/missionteilnahme/mission/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum