Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. LandView 2. RegionView 3. SelbstdispensationRegelungView 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 LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Gesetz columns: - column: Beschreibung - column: Land - column: Titel - column: InkraftDatum - column: GesetzTyp - column: Kurzbezeichnung The table should have the title "Gesetzs" und the data must be loaded from the server with the following relative URL: "/GesetzService/gesetz/land/{id}" Add a HTML table to the view with the following SelbstdispensationRegelung columns: - column: Land - column: Beschreibung - column: Region - column: Gesetz The table should have the title "SelbstdispensationRegelungs" und the data must be loaded from the server with the following relative URL: "/LandService/selbstdispensationregelung/land/{id}" Add a HTML table to the view with the following Arzt columns: - column: Vorname - column: Nachname - column: Fachrichtung - column: Land The table should have the title "Arzts" und the data must be loaded from the server with the following relative URL: "/ArztService/arzt/land/{id}" Add a HTML table to the view with the following Museum columns: - column: Ort - column: MuseumTyp - column: Schwerpunkt - column: Land - column: Name The table should have the title "Museums" und the data must be loaded from the server with the following relative URL: "/MuseumService/museum/land/{id}" Add a HTML table to the view with the following Hausapotheke columns: - column: Land - column: Typ - column: Ort - column: TierarztFlag - column: Arzt The table should have the title "Hausapothekes" und the data must be loaded from the server with the following relative URL: "/ArztService/hausapotheke/land/{id}" Add a HTML table to the view with the following Region columns: - column: Land - column: RegionTyp - column: Name The table should have the title "Regions" und the data must be loaded from the server with the following relative URL: "/LandService/region/land/{id}" Add a HTML table to the view with the following Organisation columns: - column: Land - column: SitzOrt - column: Name - column: OrganisationTyp The table should have the title "Organisations" und the data must be loaded from the server with the following relative URL: "/SymbolService/organisation/land/{id}" Add a HTML table to the view with the following ArzneimittelPreisregel columns: - column: Land - column: Gesetz - column: Beschreibung - column: GueltigAb The table should have the title "ArzneimittelPreisregels" und the data must be loaded from the server with the following relative URL: "/GesetzService/arzneimittelpreisregel/land/{id}" 2. The RegionView must contain the following fields: - name: Land type: Land - name: Name type: STRING - name: RegionTyp type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Region entity should be loaded from the relative URL: "/LandService/region/{id}" (HTTP-GET) If a new Region entity has been created, the new entity should be posted to the relative URL: "/LandService/region" (HTTP-POST) If an existing Region entity has been updated, the modified entity should be sent to the relative URL: "/LandService/region/{id}" (HTTP-PUT) If an existing Region entity has to be deleted, the following relative URL should be called: "/LandService/region/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SelbstdispensationRegelung columns: - column: Land - column: Beschreibung - column: Region - column: Gesetz The table should have the title "SelbstdispensationRegelungs" und the data must be loaded from the server with the following relative URL: "/LandService/selbstdispensationregelung/region/{id}" Add a HTML table to the view with the following Behoerde columns: - column: BehoerdeTyp - column: Region - column: Name The table should have the title "Behoerdes" und the data must be loaded from the server with the following relative URL: "/GesetzService/behoerde/region/{id}" Add a HTML table to the view with the following Apotheke columns: - column: Ort - column: Region - column: Hauptapotheke - column: Strasse - column: Plz - column: VersandErlaubnisFlag - column: ApothekenTyp - column: Gruendungsdatum - column: InhaberApotheker - column: InternationaleBezeichnungFlag - column: Name The table should have the title "Apothekes" und the data must be loaded from the server with the following relative URL: "/ApothekeService/apotheke/region/{id}" 3. The SelbstdispensationRegelungView must contain the following fields: - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: Land type: Land - name: Region type: Region The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing SelbstdispensationRegelung entity should be loaded from the relative URL: "/LandService/selbstdispensationregelung/{id}" (HTTP-GET) If a new SelbstdispensationRegelung entity has been created, the new entity should be posted to the relative URL: "/LandService/selbstdispensationregelung" (HTTP-POST) If an existing SelbstdispensationRegelung entity has been updated, the modified entity should be sent to the relative URL: "/LandService/selbstdispensationregelung/{id}" (HTTP-PUT) If an existing SelbstdispensationRegelung entity has to be deleted, the following relative URL should be called: "/LandService/selbstdispensationregelung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum