Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
MobileEinheitstypApp
Please create a React-JS application for the MobileEinheitstypModule. The application has to offer the following views for the user interface: 1. MobileEinheitView 2. MobileEinheitstypView 3. PraxisartView 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 MobileEinheitView must contain the following fields: - name: IstDrogenberatung type: BOOL - name: IstObdachlosenhilfe type: BOOL - name: IstZahneinheit type: BOOL - name: Kennzeichen type: STRING - name: MobileEinheitstyp type: MobileEinheitstyp - name: Praxis type: Praxis - name: Standort type: STRING The data source for the [MobileEinheitstyp] select control should be loaded from the relative URL: "/MobileEinheitstypService/mobileeinheitstyp" (HTTP-GET) The data source for the [Praxis] select control should be loaded from the relative URL: "/PraxisService/praxis" (HTTP-GET) An existing MobileEinheit entity should be loaded from the relative URL: "/MobileEinheitstypService/mobileeinheit/{id}" (HTTP-GET) If a new MobileEinheit entity has been created, the new entity should be posted to the relative URL: "/MobileEinheitstypService/mobileeinheit" (HTTP-POST) If an existing MobileEinheit entity has been updated, the modified entity should be sent to the relative URL: "/MobileEinheitstypService/mobileeinheit/{id}" (HTTP-PUT) If an existing MobileEinheit entity has to be deleted, the following relative URL should be called: "/MobileEinheitstypService/mobileeinheit/{id}" (HTTP-DELETE) 2. The MobileEinheitstypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing MobileEinheitstyp entity should be loaded from the relative URL: "/MobileEinheitstypService/mobileeinheitstyp/{id}" (HTTP-GET) If a new MobileEinheitstyp entity has been created, the new entity should be posted to the relative URL: "/MobileEinheitstypService/mobileeinheitstyp" (HTTP-POST) If an existing MobileEinheitstyp entity has been updated, the modified entity should be sent to the relative URL: "/MobileEinheitstypService/mobileeinheitstyp/{id}" (HTTP-PUT) If an existing MobileEinheitstyp entity has to be deleted, the following relative URL should be called: "/MobileEinheitstypService/mobileeinheitstyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MobileEinheit columns: - column: IstDrogenberatung - column: IstZahneinheit - column: MobileEinheitstyp - column: Kennzeichen - column: IstObdachlosenhilfe - column: Praxis - column: Standort The table should have the title "MobileEinheits" und the data must be loaded from the server with the following relative URL: "/MobileEinheitstypService/mobileeinheit/mobileeinheitstyp/{id}" 3. The PraxisartView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Praxisart entity should be loaded from the relative URL: "/MobileEinheitstypService/praxisart/{id}" (HTTP-GET) If a new Praxisart entity has been created, the new entity should be posted to the relative URL: "/MobileEinheitstypService/praxisart" (HTTP-POST) If an existing Praxisart entity has been updated, the modified entity should be sent to the relative URL: "/MobileEinheitstypService/praxisart/{id}" (HTTP-PUT) If an existing Praxisart entity has to be deleted, the following relative URL should be called: "/MobileEinheitstypService/praxisart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Praxis columns: - column: Name - column: LandRegion - column: Rechtsform - column: Postleitzahl - column: Webseite - column: IstAmbulanteKlinik - column: Praxisart - column: Ort - column: Strasse - column: EmailAdresse - column: Enddatum - column: Telefonnummer - column: Kooperationsform - column: Startdatum - column: IstMobil The table should have the title "Praxiss" und the data must be loaded from the server with the following relative URL: "/PraxisService/praxis/praxisart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum