Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ApothekenketteApp
Please create a React-JS application for the ApothekenketteModule. The application has to offer the following views for the user interface: 1. ApothekenketteView 2. ApothekenketteMitgliedView 3. ApothekenleiterView 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 ApothekenketteView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Apothekenkette entity should be loaded from the relative URL: "/ApothekenketteService/apothekenkette/{id}" (HTTP-GET) If a new Apothekenkette entity has been created, the new entity should be posted to the relative URL: "/ApothekenketteService/apothekenkette" (HTTP-POST) If an existing Apothekenkette entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenketteService/apothekenkette/{id}" (HTTP-PUT) If an existing Apothekenkette entity has to be deleted, the following relative URL should be called: "/ApothekenketteService/apothekenkette/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ApothekenketteMitglied columns: - column: VonDatum - column: BisDatum - column: Apothekenkette - column: Apotheke The table should have the title "ApothekenketteMitglieds" und the data must be loaded from the server with the following relative URL: "/ApothekenketteService/apothekenkettemitglied/apothekenkette/{id}" 2. The ApothekenketteMitgliedView must contain the following fields: - name: Apotheke type: Apotheke - name: Apothekenkette type: Apothekenkette - name: BisDatum type: DATE - name: VonDatum type: DATE The data source for the [Apothekenkette] select control should be loaded from the relative URL: "/ApothekenketteService/apothekenkette" (HTTP-GET) The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) An existing ApothekenketteMitglied entity should be loaded from the relative URL: "/ApothekenketteService/apothekenkettemitglied/{id}" (HTTP-GET) If a new ApothekenketteMitglied entity has been created, the new entity should be posted to the relative URL: "/ApothekenketteService/apothekenkettemitglied" (HTTP-POST) If an existing ApothekenketteMitglied entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenketteService/apothekenkettemitglied/{id}" (HTTP-PUT) If an existing ApothekenketteMitglied entity has to be deleted, the following relative URL should be called: "/ApothekenketteService/apothekenkettemitglied/{id}" (HTTP-DELETE) 3. The ApothekenleiterView must contain the following fields: - name: Apotheke type: Apotheke - name: Apotheker type: Apotheker - name: BisDatum type: DATE - name: VonDatum type: DATE The data source for the [Apotheker] select control should be loaded from the relative URL: "/ApothekeService/apotheker" (HTTP-GET) The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) An existing Apothekenleiter entity should be loaded from the relative URL: "/ApothekenketteService/apothekenleiter/{id}" (HTTP-GET) If a new Apothekenleiter entity has been created, the new entity should be posted to the relative URL: "/ApothekenketteService/apothekenleiter" (HTTP-POST) If an existing Apothekenleiter entity has been updated, the modified entity should be sent to the relative URL: "/ApothekenketteService/apothekenleiter/{id}" (HTTP-PUT) If an existing Apothekenleiter entity has to be deleted, the following relative URL should be called: "/ApothekenketteService/apothekenleiter/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum