Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ApothekenkooperationApp
Please create a React-JS application for the ApothekenkooperationModule. The application has to offer the following views for the user interface: 1. ApothekenkooperationView 2. ApothekenkooperationMitgliedView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The ApothekenkooperationView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Apothekenkooperation entity should be loaded from the relative URL: "/ApothekenkooperationService/apothekenkooperation/{id}" (HTTP-GET) If a new Apothekenkooperation entity has been created, the new entity should be posted to the relative URL: "/ApothekenkooperationService/apothekenkooperation" (HTTP-POST) If an existing Apothekenkooperation entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenkooperationService/apothekenkooperation/{id}" (HTTP-PUT) If an existing Apothekenkooperation entity has to be deleted, the following relative URL should be called: "/ApothekenkooperationService/apothekenkooperation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ApothekenkooperationMitglied columns: - column: Apotheke - column: BisDatum - column: Apothekenkooperation - column: VonDatum The table should have the title "ApothekenkooperationMitglieds" und the data must be loaded from the server with the following relative URL: "/ApothekenkooperationService/apothekenkooperationmitglied/apothekenkooperation/{id}" 2. The ApothekenkooperationMitgliedView must contain the following fields: - name: Apotheke type: Apotheke - name: Apothekenkooperation type: Apothekenkooperation - name: BisDatum type: DATE - name: VonDatum type: DATE The data source for the [Apothekenkooperation] select control should be loaded from the relative URL: "/ApothekenkooperationService/apothekenkooperation" (HTTP-GET) The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) An existing ApothekenkooperationMitglied entity should be loaded from the relative URL: "/ApothekenkooperationService/apothekenkooperationmitglied/{id}" (HTTP-GET) If a new ApothekenkooperationMitglied entity has been created, the new entity should be posted to the relative URL: "/ApothekenkooperationService/apothekenkooperationmitglied" (HTTP-POST) If an existing ApothekenkooperationMitglied entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenkooperationService/apothekenkooperationmitglied/{id}" (HTTP-PUT) If an existing ApothekenkooperationMitglied entity has to be deleted, the following relative URL should be called: "/ApothekenkooperationService/apothekenkooperationmitglied/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum